<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Purrucker Page Blog &#187; kristian</title>
	<atom:link href="http://blog.purrucker.de/author/admin/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.purrucker.de</link>
	<description>Informationstechnologie, Sport und anderes ...</description>
	<lastBuildDate>Tue, 07 Feb 2012 12:20:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Anzeigen der Postfachgröße bei Exchange 2010</title>
		<link>http://blog.purrucker.de/2012/02/07/anzeigen-der-postfachgrose-bei-exchange-2010/</link>
		<comments>http://blog.purrucker.de/2012/02/07/anzeigen-der-postfachgrose-bei-exchange-2010/#comments</comments>
		<pubDate>Tue, 07 Feb 2012 12:15:16 +0000</pubDate>
		<dc:creator>kristian</dc:creator>
				<category><![CDATA[Computer & Technik]]></category>
		<category><![CDATA[Kommunikationstechnik]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Datenbank]]></category>
		<category><![CDATA[E-Mail]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Mail]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://blog.purrucker.de/?p=1119</guid>
		<description><![CDATA[Wer einen Server mit Microsoft Exchange betreibt ist oft auf der Suche nach den Benutzern, die zu viel Speicherplatz belegen. Leider gibt es in der grafischen Konsole von Exchange 2010 keine Möglichkeit in einer Liste alle Mailboxen mit ihrer Größe &#8230; <a href="http://blog.purrucker.de/2012/02/07/anzeigen-der-postfachgrose-bei-exchange-2010/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Wer einen Server mit Microsoft Exchange betreibt ist oft auf der Suche nach den Benutzern, die zu viel Speicherplatz belegen. Leider gibt es in der grafischen Konsole von Exchange 2010 keine Möglichkeit in einer Liste alle Mailboxen mit ihrer Größe anzuzeigen. Um eine solche List zu erhalten benötigt man also die Power Shell. Die brauchbaren Kommandos für die Power Shell haben jedoch leider den Nachteil, dass Sie sich durch ihre Länge und komplexität nicht sonderlich gut merken lassen. Deshalb habe ich mir im folgenden mal drei nützliche Varianten zum ermitteln der Mailboxgröße aufgeschrieben.</p>
<p><strong>Alle Mailboxen nach Größe anzeigen</strong></p>

<div class="wp_syntax"><div class="code"><pre class="powershell" style="font-family:monospace;">get<span style="color: pink;">-</span>mailboxdatabase <span style="color: pink;">|</span> get<span style="color: pink;">-</span>mailboxstatistics <span style="color: pink;">|</span> <span style="color: #008080; font-weight: bold;">Sort</span> <span style="color: #008080; font-style: italic;">-Property</span> TotalItemSize <span style="color: #008080; font-style: italic;">-descending</span><span style="color: pink;">|</span> <span style="color: #008080; font-weight: bold;">select-object</span> DisplayName<span style="color: pink;">,@</span><span style="color: #000000;">&#123;</span>expression<span style="color: pink;">=</span><span style="color: #000000;">&#123;</span><span style="color: #000080;">$_</span>.TotalItemSize.value.ToMB<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#125;</span><span style="color: #000000;">&#125;</span><span style="color: pink;">,</span> Itemcount<span style="color: pink;">,</span>ServerName</pre></div></div>

<p><strong>Alle Mailboxen nach Größe und mit Datenbank anzeigen</strong></p>

<div class="wp_syntax"><div class="code"><pre class="powershell" style="font-family:monospace;">get<span style="color: pink;">-</span>mailboxdatabase <span style="color: pink;">|</span> get<span style="color: pink;">-</span>mailboxstatistics <span style="color: pink;">|</span> <span style="color: #008080; font-weight: bold;">Sort</span> <span style="color: #008080; font-style: italic;">-Property</span> TotalItemSize <span style="color: #008080; font-style: italic;">-descending</span><span style="color: pink;">|</span> <span style="color: #008080; font-weight: bold;">select-object</span> DisplayName<span style="color: pink;">,@</span><span style="color: #000000;">&#123;</span>expression<span style="color: pink;">=</span><span style="color: #000000;">&#123;</span><span style="color: #000080;">$_</span>.TotalItemSize.value.ToMB<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#125;</span><span style="color: #000000;">&#125;</span><span style="color: pink;">,</span> Itemcount<span style="color: pink;">,</span>ServerName<span style="color: pink;">,</span>Database <span style="color: pink;">|</span>ft</pre></div></div>

<p><strong>Alle Mailboxen einer Datenbank auflisten</strong><br />
(anstelle von Test muss hier der DB-Name eingesetzt werden)</p>

<div class="wp_syntax"><div class="code"><pre class="powershell" style="font-family:monospace;">get<span style="color: pink;">-</span>Mailboxdatabase <span style="color: pink;">-</span>Identity <span style="color: #800000;">&quot;Test&quot;</span> <span style="color: pink;">|</span> get<span style="color: pink;">-</span>mailboxstatistics <span style="color: pink;">|</span> <span style="color: #008080; font-weight: bold;">Sort</span> <span style="color: #008080; font-style: italic;">-Property</span> TotalItemSize <span style="color: #008080; font-style: italic;">-descending</span><span style="color: pink;">|</span> <span style="color: #008080; font-weight: bold;">select-object</span> DisplayName<span style="color: pink;">,@</span><span style="color: #000000;">&#123;</span>expression<span style="color: pink;">=</span><span style="color: #000000;">&#123;</span><span style="color: #000080;">$_</span>.TotalItemSize.value.ToMB<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#125;</span><span style="color: #000000;">&#125;</span><span style="color: pink;">,</span>Itemcount<span style="color: pink;">,</span>ServerName</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://blog.purrucker.de/2012/02/07/anzeigen-der-postfachgrose-bei-exchange-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Antipasti für 8 Personen</title>
		<link>http://blog.purrucker.de/2012/01/01/antipasti-fur-8-personen/</link>
		<comments>http://blog.purrucker.de/2012/01/01/antipasti-fur-8-personen/#comments</comments>
		<pubDate>Sun, 01 Jan 2012 20:09:43 +0000</pubDate>
		<dc:creator>kristian</dc:creator>
				<category><![CDATA[Essen & Trinken]]></category>
		<category><![CDATA[Antipasti]]></category>
		<category><![CDATA[Aubergine]]></category>
		<category><![CDATA[Champignons]]></category>
		<category><![CDATA[Gemüse]]></category>
		<category><![CDATA[Paprika]]></category>
		<category><![CDATA[Vorspeise]]></category>
		<category><![CDATA[Zucchini]]></category>

		<guid isPermaLink="false">http://blog.purrucker.de/?p=1099</guid>
		<description><![CDATA[Zutaten: 1 Aubergine 4 Zucchini 3 Paprikaschoten, bunt, nach Belieben 250 g Champignons Thymian 3 Zehen Knoblauch Salz 3 EL Öl Für die Marinade: 2 Schalotten (alternativ rote Zwiebeln), 3 Limetten, 5 EL Balsamico, 220 ml Olivenöl, 5 EL Weißweinessig, &#8230; <a href="http://blog.purrucker.de/2012/01/01/antipasti-fur-8-personen/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img src="http://blog.purrucker.de/wp-content/uploads/2012/01/DSC_5495_klein.jpg" alt="" title="Antipasti" width="450" height="249" class="alignleft size-full wp-image-1100" /><br />
<strong>Zutaten:</strong><br />
1 Aubergine<br />
4 Zucchini<br />
3 Paprikaschoten, bunt, nach Belieben<br />
250 g Champignons<br />
Thymian<br />
3 Zehen Knoblauch<br />
Salz<br />
3 EL Öl</p>
<p><strong>Für die Marinade:</strong><br />
2 Schalotten (alternativ rote Zwiebeln), 3 Limetten, 5 EL Balsamico, 220 ml Olivenöl, 5 EL Weißweinessig, Öl für das Blech</p>
<p><strong>Für die Garnitur:</strong><br />
Oliven, Basilikum </p>
<p><strong>Zubereitung:</strong><br />
Gemüse in reichlich kaltem Wasser rasch, aber sorgfältig waschen und in grobe Stücke, Zucchini in dicke Scheiben schneiden. Gemüsestücke und Pilze auf ein geöltes Backblech legen und Salzen und pfeffern. Thymian und gehackten Knoblauch darüber streuen und ca. 3 EL Öl darüber verteilen.<br />
Das Ganze dann ca. 20 Minuten im vorgeheizten Backofen bei 200° Grad Heißluft in den Backofen geben.</p>
<p>Inzwischen die Marinade zusammen rühren. Dazu Schalotten in dünne Scheiben schneiden. Danach Limonensaft, Balsamico, Lorbeerblätter, Essig und Öl miteinander verrühren. Danach die Schalottenscheiben zugeben.</p>
<p>Gemüse noch lauwarm in die Marinade geben und mindestens 3 Stunden durchziehen lassen.</p>
<p>Vor dem Servieren mit Oliven und Basilikum garnieren.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.purrucker.de/2012/01/01/antipasti-fur-8-personen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Autodiscover bei Outlook abschalten</title>
		<link>http://blog.purrucker.de/2011/11/17/autodiscover-bei-outlook-abschalten/</link>
		<comments>http://blog.purrucker.de/2011/11/17/autodiscover-bei-outlook-abschalten/#comments</comments>
		<pubDate>Thu, 17 Nov 2011 16:51:15 +0000</pubDate>
		<dc:creator>kristian</dc:creator>
				<category><![CDATA[Computer & Technik]]></category>
		<category><![CDATA[Hersteller]]></category>
		<category><![CDATA[Kommunikationstechnik]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[E-Mail]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Outlook]]></category>

		<guid isPermaLink="false">http://blog.purrucker.de/?p=1088</guid>
		<description><![CDATA[Die Autodiscover Funktion von Outlook ist eine nützliche Sache, die einen bei gemischten Umgebungen mit mehre Firewalls, DNS- und Exchangeservern in die Verzweiflung treiben kann. Vielleicht hat Microsoft deshalb ja sogar einen Song über Autodicover auf der Technet-Webseite veröffentlicht http://gallery.technet.microsoft.com/The-Autodiscover-Song-a68b9f7c &#8230; <a href="http://blog.purrucker.de/2011/11/17/autodiscover-bei-outlook-abschalten/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Die Autodiscover Funktion von Outlook ist eine nützliche Sache, die einen bei gemischten Umgebungen mit mehre Firewalls, DNS- und Exchangeservern in die Verzweiflung treiben kann. Vielleicht hat Microsoft deshalb ja sogar einen Song über Autodicover auf der Technet-Webseite veröffentlicht <img src='http://blog.purrucker.de/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p><a href=" http://gallery.technet.microsoft.com/The-Autodiscover-Song-a68b9f7c"></p>
<p>http://gallery.technet.microsoft.com/The-Autodiscover-Song-a68b9f7c</a></p>
<p>Leider läuft ab Outlook 2007 ohne autodiscover einiges nicht mehr (z.B. Free and Busy Informationen, der Abwesenheitsassist, das Offline Address Book usw). Dies lässt sich allerdings umgehen, indem man für den Client das Autodiscover abzuschalten. Im folgenden ein paar Registry-Einträge einem dies ermöglichen:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">HKCU\Software\Microsoft\Office\<span style="color: #000000;">12.0</span>\Outlook\AutoDiscover
DWORD: DisableAutoStartup
Set to <span style="color: #000000;">1</span></pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">HKEY_CURRENT_USER\Software\Policies\Microsoft\Office\<span style="color: #000000;">12.0</span>\Outlook\AutoDiscover
DWORD: ZeroConfigExchange
Set to <span style="color: #000000;">1</span></pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000;">2</span>. Free Busy:
Outlook <span style="color: #000000;">2007</span> zwingen den Public Folder Free<span style="color: #000000; font-weight: bold;">/</span>Busy zu nutzen:
Key: HKEY_CURRENT_USER\Software\Microsoft\Office\<span style="color: #000000;">12.0</span>\Outlook\Options\Calendar
DWORD: UseLegacyFB
Wert:
<span style="color: #000000;">0</span> <span style="color: #7a0874; font-weight: bold;">&#40;</span>oder nicht vorhanden<span style="color: #7a0874; font-weight: bold;">&#41;</span> = default Einstellung - Autodiscover nutzen
<span style="color: #000000;">1</span> = public folder free<span style="color: #000000; font-weight: bold;">/</span>busy nutzen</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://blog.purrucker.de/2011/11/17/autodiscover-bei-outlook-abschalten/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apfelstrudel</title>
		<link>http://blog.purrucker.de/2011/09/13/apfelstrudel/</link>
		<comments>http://blog.purrucker.de/2011/09/13/apfelstrudel/#comments</comments>
		<pubDate>Tue, 13 Sep 2011 12:55:19 +0000</pubDate>
		<dc:creator>kristian</dc:creator>
				<category><![CDATA[Essen & Trinken]]></category>
		<category><![CDATA[Apfelstrudel]]></category>
		<category><![CDATA[Äpfel]]></category>
		<category><![CDATA[Eis]]></category>
		<category><![CDATA[Kuchen]]></category>
		<category><![CDATA[Strudel]]></category>

		<guid isPermaLink="false">http://blog.purrucker.de/?p=1047</guid>
		<description><![CDATA[Zutaten: 3 Pkt. Blätterteig 6 Äpfel 1 Becher Schmand ½ Becher Sahne 1 Ei Zucker Zimt evtl. Rosinen Puderzucker Zubereitung: Äpfel mit einem Puerierstab oder Mixer zerkleinern, dann in eine Schüssel geben und mit dem Schmand vermengen. Den Blätterteig ausrollen &#8230; <a href="http://blog.purrucker.de/2011/09/13/apfelstrudel/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img src="http://blog.purrucker.de/wp-content/uploads/2011/09/aepfel.jpg" alt="" title="aepfel" width="450" height="299" class="alignleft size-full wp-image-1072" /><br />
<strong>Zutaten:</strong></p>
<p>3 Pkt.	Blätterteig<br />
6 Äpfel<br />
1 Becher Schmand<br />
½ Becher Sahne<br />
1 Ei<br />
Zucker<br />
Zimt<br />
evtl. Rosinen<br />
Puderzucker</p>
<p><strong>Zubereitung:</strong><br />
Äpfel mit einem Puerierstab oder Mixer zerkleinern, dann in eine Schüssel geben und mit dem Schmand vermengen.<br />
<img src="http://blog.purrucker.de/wp-content/uploads/2011/09/apfelstrudel_450.jpg" alt="" title="Apfelstrudel" width="450" height="299" class="alignright size-full wp-image-1070" /></p>
<p>Den Blätterteig ausrollen und die Apfelmasse gleichmäßig auf allen Rollen verteilen. Mit Zucker und Zimt bestreuen, evtl. die Rosinen darauf verteilen. Die Teigrollen zu Strudeln aufrollen und in eine leicht gefettete Auflaufform legen.<br />
Die Sahne mit dem Ei verrühren und über den Strudeln verteilen. Im vorgeheizten Backofen bei 180°C ca. 30 Min mit Deckel, dann nochmal ca. 25 Min ohne Deckel backen, bis der Strudel goldbraun ist.<br />
Mit Puderzucker bestreuen. Evtl. mit Vanille-Eis oder Soße servieren.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.purrucker.de/2011/09/13/apfelstrudel/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>FreeRADIUS: Begrenzung der Zugriffszeit nach der ersten Benutzung</title>
		<link>http://blog.purrucker.de/2011/09/13/freeradius-begrenzung-der-zugriffszeit-nach-der-ersten-benutzung/</link>
		<comments>http://blog.purrucker.de/2011/09/13/freeradius-begrenzung-der-zugriffszeit-nach-der-ersten-benutzung/#comments</comments>
		<pubDate>Tue, 13 Sep 2011 10:13:41 +0000</pubDate>
		<dc:creator>kristian</dc:creator>
				<category><![CDATA[Computer & Technik]]></category>
		<category><![CDATA[Kommunikationstechnik]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Authentisierung]]></category>
		<category><![CDATA[Authorisierung]]></category>
		<category><![CDATA[Benutzer]]></category>
		<category><![CDATA[FreeRADIUS]]></category>
		<category><![CDATA[Zugang]]></category>
		<category><![CDATA[Zugriff]]></category>

		<guid isPermaLink="false">http://blog.purrucker.de/?p=1062</guid>
		<description><![CDATA[Mit Hilfe eines Moduls kann man den FreeRADIUS dazu bringen, dass ein Benutzerzugang nach einer vorgegebenen Zeit nach der ersten Anmeldung abläuft. Dazu erzeugt man ein neues Modul innerhalb des Modulverzeichnisses (dieses findet man meistens unter /etc/freeradius/modules/). Ich habe da &#8230; <a href="http://blog.purrucker.de/2011/09/13/freeradius-begrenzung-der-zugriffszeit-nach-der-ersten-benutzung/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Mit Hilfe eines Moduls kann man den FreeRADIUS dazu bringen, dass ein Benutzerzugang nach einer vorgegebenen Zeit nach der ersten Anmeldung abläuft. Dazu erzeugt man ein neues Modul innerhalb des Modulverzeichnisses (dieses findet man meistens unter /etc/freeradius/modules/). Ich habe da Modul passender Weise accessperiod genannt und es sollte wie folgt aussehen:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"> sqlcounter accessperiod <span style="color: #7a0874; font-weight: bold;">&#123;</span>
    counter-name = Max-Access-Period-Time
    check-name = Access-Period
    sqlmod-inst = sql
    key = User-Name
    reset = never
    query = <span style="color: #ff0000;">&quot;SELECT IFNULL((SELECT TIME_TO_SEC(TIMEDIFF(Now(),AcctStartTime)) FROM radacct WHERE UserName = '%{%k}' ORDER BY AcctStartTime LIMIT 1),0)&quot;</span>
<span style="color: #7a0874; font-weight: bold;">&#125;</span></pre></div></div>

<p>Danach fügt man das Modul am Ende der entsprechenden Authorize-Section der Site des FreeRADIUS ein. Diese könnte dann z.B. wie folgt aussehen:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">authorize <span style="color: #7a0874; font-weight: bold;">&#123;</span>
        preprocess
        chap
        mschap
        suffix
        eap <span style="color: #7a0874; font-weight: bold;">&#123;</span>
                ok = <span style="color: #7a0874; font-weight: bold;">return</span>
        <span style="color: #7a0874; font-weight: bold;">&#125;</span>
        unix
        sql
        expiration
        logintime
        pap
        noresetcounter
        dailycounter
        monthlycounter
        accessperiod
<span style="color: #7a0874; font-weight: bold;">&#125;</span></pre></div></div>

<p>Damit die Konfiguration aktiv wird, muss der FreeRADIUS neu gestartet oder geladen werden und bei den entsprechenden Benutzern muss in der Tabelle radcheck noch das Attribut Access-Period vorgegeben werden. Das könnte z.B. wie folgt aussehen:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">+—-+———–+——————-+—-+————-+
<span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">id</span> <span style="color: #000000; font-weight: bold;">|</span> UserName <span style="color: #000000; font-weight: bold;">|</span> Attribute <span style="color: #000000; font-weight: bold;">|</span> op <span style="color: #000000; font-weight: bold;">|</span> Value <span style="color: #000000; font-weight: bold;">|</span>
+—-+———–+——————-+—-+————-+
<span style="color: #000000; font-weight: bold;">|</span> <span style="color: #000000;">2</span> <span style="color: #000000; font-weight: bold;">|</span> benutzer2 <span style="color: #000000; font-weight: bold;">|</span> Access-Period <span style="color: #000000; font-weight: bold;">|</span> := <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #000000;">3600</span> <span style="color: #000000; font-weight: bold;">|</span>
+—-+———–+——————-+—-+————-+</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://blog.purrucker.de/2011/09/13/freeradius-begrenzung-der-zugriffszeit-nach-der-ersten-benutzung/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Erweitern eines Datenträgers unter Windows Server 2003, Windows XP und Windows 2000</title>
		<link>http://blog.purrucker.de/2011/08/29/erweitern-eines-datentragers-unter-windows-server-2003-windows-xp-windows-2000/</link>
		<comments>http://blog.purrucker.de/2011/08/29/erweitern-eines-datentragers-unter-windows-server-2003-windows-xp-windows-2000/#comments</comments>
		<pubDate>Mon, 29 Aug 2011 15:02:46 +0000</pubDate>
		<dc:creator>kristian</dc:creator>
				<category><![CDATA[Computer & Technik]]></category>
		<category><![CDATA[Hersteller]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Dell]]></category>
		<category><![CDATA[Festpatte]]></category>
		<category><![CDATA[Speicher]]></category>
		<category><![CDATA[Storage]]></category>

		<guid isPermaLink="false">http://blog.purrucker.de/?p=1038</guid>
		<description><![CDATA[Im Gegensatz zu Windows 2008 und Windows 2008R2 ist es bei älteren Windows Versionen nicht möglich Partitionen über die Datenträgerverwaltung zu erweitern. Dies geschieht hier über das Kommandozeilentool diskpart.exe. Wenn man in einer Eingabeaufforderung diskpart.exe eingibt, erscheint eine Shell. In &#8230; <a href="http://blog.purrucker.de/2011/08/29/erweitern-eines-datentragers-unter-windows-server-2003-windows-xp-windows-2000/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Im Gegensatz zu Windows 2008 und Windows 2008R2 ist es bei älteren Windows Versionen nicht möglich Partitionen über die Datenträgerverwaltung zu erweitern. Dies geschieht hier über das Kommandozeilentool <strong>diskpart.exe</strong>. Wenn man in einer Eingabeaufforderung <code>diskpart.exe</code> eingibt, erscheint eine Shell. In dieser kann man sich mit dem Befehl <code>list volume</code> eine Liste der Datenträger anzeigen lassen. Wenn man den richtigen identifiziert hat, kann man diesen mit <code>select volume <Datenträgernummer></code> auswählen und mit <code>extend [size=n] [disk=n] [noerr]</code> vergrößern. Dabei ist zu beachten, dass das Vergrößern nur funktioniert, wenn die Auslagerungsdatei nicht auf dem Datenträger liegt und das Betriebssystem nicht von dort gestartet wurde.</p>
<p>Nähere Informationen findet man bei Microsoft auf der Webseite unter dem folgenden Link: <a href="http://support.microsoft.com/kb/325590/de">http://support.microsoft.com/kb/325590/de</a>.</p>
<p>Oft möchte man aber bei einem älteren Windows 2003 Server eben genau die C-Partition mit dem Betriebssystem vergrößern, weil diese durch die ganzen Sicherheitsupdates inzwischen überläuft. Dank dem Blog <a href="http://blog.root1024.ch/software/systempartition-c-in-windows-server-2003-online-vergrossern/">root1024</a> habe ich dafür das Kommandozeilentool <a href="http://support.dell.com/support/downloads/download.aspx?c=us&#038;cs=19&#038;l=en&#038;s=dhs&#038;releaseid=R64398&#038;formatcnt=2&#038;fileid=83929">expart.exe</a> von Dell entdeckt. Dieses Tool kann Systempartition (und natürlich auch andere Partitionen) einfach online (ohne Neustart) erweitern.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.purrucker.de/2011/08/29/erweitern-eines-datentragers-unter-windows-server-2003-windows-xp-windows-2000/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Berechtigungen bei einem Exchange Server 2010 neu setzen</title>
		<link>http://blog.purrucker.de/2011/06/20/berchtigungen-bei-einem-exchange-server-2010-neu-setzen/</link>
		<comments>http://blog.purrucker.de/2011/06/20/berchtigungen-bei-einem-exchange-server-2010-neu-setzen/#comments</comments>
		<pubDate>Mon, 20 Jun 2011 14:02:58 +0000</pubDate>
		<dc:creator>kristian</dc:creator>
				<category><![CDATA[Computer & Technik]]></category>
		<category><![CDATA[Hersteller]]></category>
		<category><![CDATA[Kommunikationstechnik]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[E-Mail]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://blog.purrucker.de/?p=1033</guid>
		<description><![CDATA[Unter bestimmten Umständen kann es dazu kommen, dass die Berechtigungen bei einem Exchange Server 2010 Server falsch gesetzt sind. Ich hatte neulich z.B. den Fall, dass interne E-Mails trotzt korrekter Konfiguration nicht von einem zum anderen Server übermittelt wurden. Für &#8230; <a href="http://blog.purrucker.de/2011/06/20/berchtigungen-bei-einem-exchange-server-2010-neu-setzen/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Unter bestimmten Umständen kann es dazu kommen, dass die Berechtigungen bei einem Exchange Server 2010 Server falsch gesetzt sind. Ich hatte neulich z.B. den Fall, dass interne E-Mails trotzt korrekter Konfiguration nicht von einem zum anderen Server übermittelt wurden.</p>
<p>Für solche Fälle gibt es den Schalter <code>/preparelegacyexchangepermissions</code> für die <code>setup.exe</code>. Wenn man die <code>setup.exe</code> mit diesem Parameter auf dem Server erneut startet, werden die Berechtigungen erneut gesetzt.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.purrucker.de/2011/06/20/berchtigungen-bei-einem-exchange-server-2010-neu-setzen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux: Austausch einer defekten Festplatte im Software-RAID</title>
		<link>http://blog.purrucker.de/2011/06/01/linux-austausch-einer-defekten-festplatte-im-software-raid/</link>
		<comments>http://blog.purrucker.de/2011/06/01/linux-austausch-einer-defekten-festplatte-im-software-raid/#comments</comments>
		<pubDate>Wed, 01 Jun 2011 21:40:53 +0000</pubDate>
		<dc:creator>kristian</dc:creator>
				<category><![CDATA[Computer & Technik]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Festpatte]]></category>
		<category><![CDATA[RAID]]></category>
		<category><![CDATA[Speicher]]></category>
		<category><![CDATA[Storage]]></category>

		<guid isPermaLink="false">http://blog.purrucker.de/?p=1014</guid>
		<description><![CDATA[Der Status des Software RAID (Redundant Array of Independent Disks) wird bei Linux in der Datei /proc/mdstat festgehalten. Man kann sich den Status eines RAID also mit folgenden Befehl anzeigen lassen: cat /proc/mdstat Wenn z.B. die Festplatte /dev/sdb defekt ist, &#8230; <a href="http://blog.purrucker.de/2011/06/01/linux-austausch-einer-defekten-festplatte-im-software-raid/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Der Status des <a href="http://de.wikipedia.org/wiki/RAID#Software-RAID">Software RAID</a> (Redundant Array of Independent Disks) wird bei Linux in der Datei /proc/mdstat festgehalten. Man kann sich den Status eines RAID also mit folgenden Befehl anzeigen lassen:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">cat</span> <span style="color: #000000; font-weight: bold;">/</span>proc<span style="color: #000000; font-weight: bold;">/</span>mdstat</pre></div></div>

<p>Wenn z.B. die Festplatte /dev/sdb defekt ist, könnte die Ausgabe von wie folgt aussehen:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">Personalities : <span style="color: #7a0874; font-weight: bold;">&#91;</span>raid0<span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>raid1<span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>raid6<span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>raid5<span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>raid4<span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>raid10<span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>linear<span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>multipath<span style="color: #7a0874; font-weight: bold;">&#93;</span>
md2 : active raid1 sdb3<span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">2</span><span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>F<span style="color: #7a0874; font-weight: bold;">&#41;</span> sda3<span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">0</span><span style="color: #7a0874; font-weight: bold;">&#93;</span>
<span style="color: #000000;">730202368</span> blocks <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">2</span><span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">1</span><span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>U_<span style="color: #7a0874; font-weight: bold;">&#93;</span>
&nbsp;
md1 : active raid1 sda2<span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">0</span><span style="color: #7a0874; font-weight: bold;">&#93;</span> sdb2<span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">2</span><span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>F<span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #000000;">264960</span> blocks <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">2</span><span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">1</span><span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>U_<span style="color: #7a0874; font-weight: bold;">&#93;</span>
&nbsp;
md0 : active raid1 sdb1<span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">1</span><span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>F<span style="color: #7a0874; font-weight: bold;">&#41;</span> sda1<span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">0</span><span style="color: #7a0874; font-weight: bold;">&#93;</span>
<span style="color: #000000;">2102464</span> blocks <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">2</span><span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">2</span><span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>U_<span style="color: #7a0874; font-weight: bold;">&#93;</span></pre></div></div>

<p>Details über die einzelnen RAID Devices kann man sich mit dem Befehl mdadm anzeigen lassen. Wenn man die Details von md1 sehen möchte gibt man also den folgenden Befehl ein:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">mdadm <span style="color: #660033;">--detail</span> <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>md0</pre></div></div>

<p>Bevor eine neue Festplatte verbaut wird, sollte jetzt zunächst die defekte Festplatte aus dem RAID entfernt werden.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">mdadm <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>md0 <span style="color: #660033;">-r</span> <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>sdb1
mdadm <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>md1 <span style="color: #660033;">-r</span> <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>sdb2
mdadm <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>md2 <span style="color: #660033;">-r</span> <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>sdb3</pre></div></div>

<p>Unter Umständen kann es sein, dass eine verwendete Festplatte teilweise defekt ist und sich nicht alle Devices im Status [U_] befinden, sondern einige Devices im Status [UU] sind. In diesem Fall schlägt der Befehl fehl, da das device in Ordnung ist. In diesem Fall müssen vorher die intakten Devices mit dem Befehl mdadm als defekt markiert werden. Wenn in unserem Beispiel das Device md1 noch intakt wäre, könnte man dies mit dem folgenden Befehl erreichen:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">mdadm <span style="color: #660033;">--manage</span> <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>md1 <span style="color: #660033;">--fail</span> <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>sdb2</pre></div></div>

<p>Danach kann die neue Festplatte verbaut werden. Wenn dies geschehen ist können Partitionierung und Bootsektor von der intakten Festplatte mit dem Befehl dd kopiert werden. Das kopieren der Partitionstabelle mit dd funktioniert nicht für extended-Partitionen, diese müssen von Hand angelegt werden. Da in unserem Beispiel keine extended-Partitionen vorkommen, könnte man mit dem folgenden Befehl Partitionierung und Bootsektor auf die neue Festplatte kopieren:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">dd</span> <span style="color: #007800;">if</span>=<span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>sda <span style="color: #007800;">of</span>=<span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>sdb <span style="color: #007800;">count</span>=<span style="color: #000000;">1</span> <span style="color: #007800;">bs</span>=<span style="color: #000000;">512</span></pre></div></div>

<p>Die Partitionstabelle muss nun vom Kernel neu eingelesen werden.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">sfdisk <span style="color: #660033;">-R</span> <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>sdb</pre></div></div>

<p>Zum Schluss müssen die Partitionen der neuen Festplatte noch in das RAID eingebunden werden:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">mdadm <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>md0 <span style="color: #660033;">-a</span> <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>sdb1
mdadm <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>md1 <span style="color: #660033;">-a</span> <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>sdb2
mdadm <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>md2 <span style="color: #660033;">-a</span> <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>sdb3</pre></div></div>

<p>Die neue Partitionen sind somit Teil des Arrays und werden nun synchronisiert. Dieser Vorgang kann je nach Größe eine ganze Weile dauern. Mittels cat /proc/mdstat kann der Status der Synchronisation aufgerufen werden.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">Personalities : <span style="color: #7a0874; font-weight: bold;">&#91;</span>raid0<span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>raid1<span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>raid6<span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>raid5<span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>raid4<span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>raid10<span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>linear<span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>multipath<span style="color: #7a0874; font-weight: bold;">&#93;</span> 
md2 : active raid1 sdb3<span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">2</span><span style="color: #7a0874; font-weight: bold;">&#93;</span> sda3<span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">0</span><span style="color: #7a0874; font-weight: bold;">&#93;</span>
      <span style="color: #000000;">730202368</span> blocks <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">2</span><span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">1</span><span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>U_<span style="color: #7a0874; font-weight: bold;">&#93;</span>
      <span style="color: #7a0874; font-weight: bold;">&#91;</span>==<span style="color: #000000; font-weight: bold;">&gt;</span>..................<span style="color: #7a0874; font-weight: bold;">&#93;</span>  recovery = <span style="color: #000000;">11.7</span><span style="color: #000000; font-weight: bold;">%</span> <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">85713024</span><span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">730202368</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #007800;">finish</span>=143.8min <span style="color: #007800;">speed</span>=74694K<span style="color: #000000; font-weight: bold;">/</span>sec
&nbsp;
md0 : active raid1 sdb1<span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">2</span><span style="color: #7a0874; font-weight: bold;">&#93;</span> sda1<span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">0</span><span style="color: #7a0874; font-weight: bold;">&#93;</span>
      <span style="color: #000000;">2102464</span> blocks <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">2</span><span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">1</span><span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>U_<span style="color: #7a0874; font-weight: bold;">&#93;</span>
        <span style="color: #007800;">resync</span>=DELAYED
&nbsp;
md1 : active raid1 sdb2<span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">1</span><span style="color: #7a0874; font-weight: bold;">&#93;</span> sda2<span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">0</span><span style="color: #7a0874; font-weight: bold;">&#93;</span>
      <span style="color: #000000;">264960</span> blocks <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">2</span><span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">2</span><span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>UU<span style="color: #7a0874; font-weight: bold;">&#93;</span>
&nbsp;
unused devices: <span style="color: #000000; font-weight: bold;">&lt;</span>none<span style="color: #000000; font-weight: bold;">&gt;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://blog.purrucker.de/2011/06/01/linux-austausch-einer-defekten-festplatte-im-software-raid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Skoda Velothon Berlin 2011</title>
		<link>http://blog.purrucker.de/2011/05/24/skoda-velothon-berlin-2011/</link>
		<comments>http://blog.purrucker.de/2011/05/24/skoda-velothon-berlin-2011/#comments</comments>
		<pubDate>Tue, 24 May 2011 11:01:55 +0000</pubDate>
		<dc:creator>kristian</dc:creator>
				<category><![CDATA[Radsport]]></category>
		<category><![CDATA[Sport]]></category>

		<guid isPermaLink="false">http://blog.purrucker.de/?p=1004</guid>
		<description><![CDATA[Der Skoda Velothon Berlin waren dieses Jahr super! Bei tollem Sommerwetter mit dem Rennrad vorbei Brandenburger Tor, Potsdamer Platz, Flughafen Tempelhof und Regierungsviertel. Dabei war ich mit einer Fahrtzeit von 1:52:52 für 64,4 km und einer Durchschnittsgeschwindigkeit von 34.24 km/h &#8230; <a href="http://blog.purrucker.de/2011/05/24/skoda-velothon-berlin-2011/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.purrucker.de/wp-content/uploads/2011/05/berlinvelothon2011.jpg"><img src="http://blog.purrucker.de/wp-content/uploads/2011/05/berlinvelothon2011-150x150.jpg" alt="Skoda Velothon Berlin 2011" title="berlinvelothon2011" width="150" height="150" class="alignleft size-thumbnail wp-image-1005" /></a> Der Skoda Velothon Berlin waren dieses Jahr super! Bei tollem Sommerwetter mit dem Rennrad vorbei Brandenburger Tor, Potsdamer Platz, Flughafen Tempelhof und Regierungsviertel. Dabei war ich mit einer Fahrtzeit von 1:52:52 für 64,4 km und einer Durchschnittsgeschwindigkeit von 34.24 km/h sogar relativ schnell. Es reichte am Ende für Platz 1954 von 4264 ins Ziel gekommenen, männlichen Teilnehmern.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.purrucker.de/2011/05/24/skoda-velothon-berlin-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Outlook 2003 für Exchange 2010 verwenden</title>
		<link>http://blog.purrucker.de/2011/05/10/outlook-2003-fur-exchange-2010-verwenden/</link>
		<comments>http://blog.purrucker.de/2011/05/10/outlook-2003-fur-exchange-2010-verwenden/#comments</comments>
		<pubDate>Tue, 10 May 2011 11:08:05 +0000</pubDate>
		<dc:creator>kristian</dc:creator>
				<category><![CDATA[Computer & Technik]]></category>
		<category><![CDATA[Hersteller]]></category>
		<category><![CDATA[Kommunikationstechnik]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[E-Mail]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[Terminplanung]]></category>

		<guid isPermaLink="false">http://blog.purrucker.de/?p=1000</guid>
		<description><![CDATA[Wenn man mit Microsoft Office Outlook 2003 auf ein Microsoft Exchange Server 2010-Postfach zugreift, werden E-Mail die gelöscht oder verschoben wurden noch längere Zeit im Ordner angezeigt. Dies liegt daran, dass Microsoft bei Exchange 2010 keine UDP-Benachrichtigungen mehr an Outlook &#8230; <a href="http://blog.purrucker.de/2011/05/10/outlook-2003-fur-exchange-2010-verwenden/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Wenn man mit Microsoft Office Outlook 2003 auf ein Microsoft Exchange Server 2010-Postfach zugreift, werden E-Mail die gelöscht oder verschoben wurden noch längere Zeit im Ordner angezeigt. Dies liegt daran, dass Microsoft bei Exchange 2010 keine UDP-Benachrichtigungen mehr an Outlook versendet.</p>
<p>Da sehr viele Kunden noch Outlook 2003 einsetzen, hat Microsoft diese Funktion aber mit &#8220;Update Rollup 3 für Exchange Server 2010 Service Pack 1&#8243; wieder ermöglicht. Damit die UDP-Benachrichtigungen wieder gesendet werden, muss allerdings zusätzlich der folgende Registrierungsschlüssel inklusive Subschlüssel erstellt werden:</p>
<p><code>SubkEy-Speicherort: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MSExchangeRPC\ParametersSystem</code><br />
<code>SubkEy-Name: EnablePushNotifications</code><br />
<code>Typ: REG_DWORD</code><br />
<code>Wert: 1</code></p>
<p>Nähere Informationen findet man in dem  <a href="http://support.microsoft.com/kb/2009942">Microsoft Knowledge Base Artikel 2009942</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.purrucker.de/2011/05/10/outlook-2003-fur-exchange-2010-verwenden/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

