<?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>Markus Bäker &#187; Windows</title>
	<atom:link href="http://www.mbaeker.de/tag/windows/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mbaeker.de</link>
	<description>Use %~dp0 !!!</description>
	<lastBuildDate>Tue, 31 Jan 2012 10:49:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>WHS: Homeserverzertifikat mitbenutzen</title>
		<link>http://www.mbaeker.de/2012/01/whs-homeserverzertifikat-mitbenutzen/</link>
		<comments>http://www.mbaeker.de/2012/01/whs-homeserverzertifikat-mitbenutzen/#comments</comments>
		<pubDate>Sun, 29 Jan 2012 15:26:21 +0000</pubDate>
		<dc:creator>markus</dc:creator>
				<category><![CDATA[Deutsch]]></category>
		<category><![CDATA[WHS]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.mbaeker.de/?p=841</guid>
		<description><![CDATA[Ich benutze seit geraumer Zeit zum Backup meiner Heimcomputer den Windows Home Server. Eins der Neuerungen mit WHS 2011 ist, dass die Webseite ein offizielles Zertifikat von “Go Daddy” bekommt, dass auf den dynamischen DNS Eintrag vom WHS und somit von der offiziellen IP Adresse hört. Da die IP Adresse im allgemeinen per NAT am [...]]]></description>
			<content:encoded><![CDATA[<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; float: left; padding-top: 0px; border: 0px;" title="server" src="http://www.mbaeker.de/wp-content/uploads/2012/01/server.png" alt="server" width="128" height="128" align="left" border="0" />Ich benutze seit geraumer Zeit zum Backup meiner Heimcomputer den Windows Home Server. Eins der Neuerungen mit WHS 2011 ist, dass die Webseite ein offizielles Zertifikat von “Go Daddy” bekommt, dass auf den dynamischen DNS Eintrag vom WHS und somit von der offiziellen IP Adresse hört. Da die IP Adresse im allgemeinen per NAT am Router umgesetzt wird, teilen sich mehrere Computer diese externe IP und somit könnten auch mehrere Computer Dienste nach draußen anbieten und somit das Zertifikat teilen. Bis vor kurzen dachte ich, dass Zertifikat sei als nicht exportierbar markiert (was eigentlich aus MS Sicht mehr Sinn machen würde, da der Zertifikat eigentlich nur auf dem Homeserver sein muss).</p>
<p><span id="more-841"></span></p>
<p>Ein Freund hat mich dann darauf hingewiesen, dass man das Zertifikat sehr wohl exportieren kann. Auf Basis dieser Information schreibe ich hier eine kurze Anleitung wie man das Zertifikat exportieren, zu einem linuxkompatiblen Format umwandeln und dann in Dovecot als von extern erreichbarer IMAP Server einbinden kann.</p>
<p>1. Export</p>
<p>Zum Export meldet man sich einfach auf seinem Homeserver per RDP an. Dazu Administrator als Passwort und sein WHS Passwort verwenden.  Dort im Startmenü per Run/Ausführen mmc.exe starten. Unter File/Datei über Add/Remove Snap-in die Zertifikatskonsole (Certificates) hinzufügen und mit dem lokalen Computer verbinden. Das Zertifikat ist unter Personal\Certificates zu finden. Es sollte den DynDNS Namen des Homeservers haben und von “Go Daddy Secure Certfication Authority” stammen. Sind zwei Zertifikate dieser Art vorhanden, dann sollte man das nehmen, dass beim Zertifizierungspfad keine Fehler aufzeigt.</p>
<p>Im Kontextmenü des Zertifikats (Rechter Mausklick) wählt man über “Alle Tasks” den Punkt Export aus. Im Wizard bestätigt man, dass man den privaten Schlüssel mit exportieren möchte und wählt als Exportformat PFX aus und gibt ein Password ein. Die Datei liegt man an einem Ort ab, auf dem man später von außerhalb des Servers zugreifen kann (z.B. in einer Freigabe unter d:\ServerFolders\…)</p>
<p>2. Transfer zu Linux</p>
<p>Als nächsten Schritt muss man die Datei zu seinem Linuxsystem übertragen. Ich habe hierfür WinSCP verwendet.</p>
<p>3. Umwandlung</p>
<p>Im Allgemeinen ist auf Linux bereits OpenSSL installiert. Diese Software wird verwendet um das Zertifikat umzuwandeln. Dabei wird aus einem Schlüsselpaar eine Datei mit dem Zertifikat und eine Zweite mit dem privaten Schlüssel:</p>
<p>Erzeugen des Zertifikates:</p>
<pre class="brush: plain; title: ; notranslate">openssl pkcs12 –in whs.pfx -clcerts -nokeys -out whscert.pem</pre>
<p>Erzeugen des privaten Schlüssels:</p>
<pre class="brush: plain; title: ; notranslate">openssl pkcs12 -in filename.pfx -nocerts -nodes -out whskey.pem</pre>
<p>Beide Dateien muss man jetzt an einen Ort verschieben auf den Dovecot zugreifen kann. Es bietet sich /etc/ssl/private/ für den privaten Schlüssel und /etc/ssl/certs/ für das Zertifikat an.</p>
<p>4. Verwenden in Dovecot</p>
<p>In Dovecot kann man dieses Zertifikat jetzt wie jedes (z.B. das selbstsignierte) Zertifikat verwenden. In Dovecot 2.0 würde dies in der /etc/dovecot/dovecot.conf so aussehen:</p>
<pre class="brush: plain; title: ; notranslate">
ssl_cert = ssl_key = </pre>
]]></content:encoded>
			<wfw:commentRss>http://www.mbaeker.de/2012/01/whs-homeserverzertifikat-mitbenutzen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SCOM: Notify by ICQ, MSN, Jabber or Facebook</title>
		<link>http://www.mbaeker.de/2011/11/scom-notify-by-icq-msn-jabber-or-facebook/</link>
		<comments>http://www.mbaeker.de/2011/11/scom-notify-by-icq-msn-jabber-or-facebook/#comments</comments>
		<pubDate>Sun, 13 Nov 2011 13:36:18 +0000</pubDate>
		<dc:creator>markus</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Operations Manager]]></category>
		<category><![CDATA[System Center]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[scom]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.mbaeker.de/?p=781</guid>
		<description><![CDATA[On thing I was always missing in System Center Operations Manager (SCOM) was the notification with other instant messaging (IM) protocols than the build in Microsoft Communicator. On friday I had some time to test a solution which I will describe here. On warnung at the beginning: This current solution is experimental. It will run [...]]]></description>
			<content:encoded><![CDATA[<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; float: left; padding-top: 0px; border: 0px;" title="aim" src="http://www.mbaeker.de/wp-content/uploads/2011/11/aim.png" alt="aim" width="84" height="84" align="left" border="0" />On thing I was always missing in System Center Operations Manager (SCOM) was the notification with other instant messaging (IM) protocols than the build in Microsoft Communicator.</p>
<p>On friday I had some time to test a solution which I will describe here.</p>
<p>On warnung at the beginning: This current solution is experimental. It will run a Miranda client in the system context and can be a large security hole for your SCOM server!</p>
<p>The first thing I had to to is finding a client which can be controlled by command line or by a SDK. I stumbled upon the <a href="http://www.eblis.tla.ro/index.php?option=com_content&amp;task=view&amp;id=14&amp;Itemid=26" target="_blank">command line plugin</a> for Miranda IM. Miranda IM is an open source mutli-protocol instant messaging client. With it you can integrate multiple protocols with plugins.</p>
<p><span id="more-781"></span></p>
<p>I created a test ICQ account and a surrounding batch file for miranda:</p>
<pre class="brush: plain; title: ; notranslate">
setlocal

set log=&quot;c:\logging.log&quot;
echo. &gt;&gt; %log%
echo starting %date% %time% &gt;&gt; %log%

rem läuft miranda schon?
tasklist | findstr /i miranda32.exe
if %errorlevel%.==0. goto laeuft
echo Starte Miranda im System Kontext &gt;&gt; %log%
start &quot;&quot; &quot;%~dp0miranda32.exe&quot;
echo 10 sec warten...
ping -w 1000 -n 10 128.0.0.1
goto weiter

:laeuft
echo Miranda laeuft schon  &gt;&gt; %log%

:weiter
echo mimcmd message %~1 &quot;%~2&quot; &gt;&gt; %log%
mimcmd message %~1 &quot;%~2&quot;&gt;&gt; %log%
endlocal
</pre>
<p>First it checks if miranda is already running. The command Tasklist is only available in Windows 2008 and later. If it isn’t running it will be startet (has to be in the same directory as the batch file) and the batch waits for 10 seconds. After that it will use the mimcmd command the send the message.</p>
<p>The batch file takes two parameter: 1. the target of the im (can be more than one) 2. The message to send.</p>
<p>To use this batch file you have to create a Command Notification Channel in SCOM:</p>
<p><a href="http://www.mbaeker.de/wp-content/uploads/2011/11/notificationChannel1.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="notificationChannel1" src="http://www.mbaeker.de/wp-content/uploads/2011/11/notificationChannel1_thumb.png" alt="notificationChannel1" width="345" height="304" border="0" /></a></p>
<p>And here the interesting command line call:</p>
<p><a href="http://www.mbaeker.de/wp-content/uploads/2011/11/notificationChannel2.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="notificationChannel2" src="http://www.mbaeker.de/wp-content/uploads/2011/11/notificationChannel2_thumb.png" alt="notificationChannel2" width="352" height="310" border="0" /></a></p>
<p>I have used only one target. You can define more then one target by surounding the second parameter (everything between 5 and 49) with qoutes like this: “ICQNumber1 ICQNumber2” or if you want to specify the protocol: “ICQNumber1:ICQ MSNAlias:MSN”. For details look into the readme of the command line plugin.</p>
<p>For sending something to this channel you have to create a subscriber:</p>
<p><a href="http://www.mbaeker.de/wp-content/uploads/2011/11/subscriber.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="subscriber" src="http://www.mbaeker.de/wp-content/uploads/2011/11/subscriber_thumb.png" alt="subscriber" width="354" height="312" border="0" /></a></p>
<p>And after that you create a normal subscription with the channel and the subscriber.</p>
<p>If everything worded correctly you will see after the first alert in the process list (task manager):</p>
<p><a href="http://www.mbaeker.de/wp-content/uploads/2011/11/taskmgr.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="taskmgr" src="http://www.mbaeker.de/wp-content/uploads/2011/11/taskmgr_thumb.png" alt="taskmgr" width="446" height="223" border="0" /></a></p>
<p>a miranda process in the system context. And in you IM client:</p>
<p><a href="http://www.mbaeker.de/wp-content/uploads/2011/11/im.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="im" src="http://www.mbaeker.de/wp-content/uploads/2011/11/im_thumb.png" alt="im" width="463" height="146" border="0" /></a></p>
<p>To increase the security you should deactivate and delete all plugins that aren’t necessary. Here is my plugin list:</p>
<p><a href="http://www.mbaeker.de/wp-content/uploads/2011/11/plugins.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="plugins" src="http://www.mbaeker.de/wp-content/uploads/2011/11/plugins_thumb.png" alt="plugins" width="222" height="314" border="0" /></a></p>
<p>Outlook:</p>
<p>I will try to start the miranda process with lower privileges but still in the system context.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mbaeker.de/2011/11/scom-notify-by-icq-msn-jabber-or-facebook/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SCCM: In WinPE fehlende Treiber ermitteln</title>
		<link>http://www.mbaeker.de/2011/10/sccm-in-winpe-fehlende-treiber-ermitteln/</link>
		<comments>http://www.mbaeker.de/2011/10/sccm-in-winpe-fehlende-treiber-ermitteln/#comments</comments>
		<pubDate>Sun, 23 Oct 2011 14:55:35 +0000</pubDate>
		<dc:creator>markus</dc:creator>
				<category><![CDATA[Configuration Manager]]></category>
		<category><![CDATA[Deutsch]]></category>
		<category><![CDATA[System Center]]></category>
		<category><![CDATA[SCCM]]></category>
		<category><![CDATA[Treiber]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[WinPE]]></category>

		<guid isPermaLink="false">http://www.mbaeker.de/?p=755</guid>
		<description><![CDATA[Für die OS Installation wird in SCCM ein WinPE Bootimage eingesetzt. Über die Konsole lässt sich hier auf einfache Art und Weise zusätzliche Treiber einbinden. Relevant ist dies im Allgemeinen nur für sehr neue Netzwerk bzw. SATA Treiber, da Windows 7 von Haus aus schon sehr viele Geräte unterstützt. Manchmal ist es schwierig den passenden [...]]]></description>
			<content:encoded><![CDATA[<p><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: left; border-top: 0px; border-right: 0px; padding-top: 0px" title="Disconnected" border="0" alt="Disconnected" align="left" src="http://www.mbaeker.de/wp-content/uploads/2011/10/Disconnected.png" width="77" height="77" />Für die OS Installation wird in SCCM ein WinPE Bootimage eingesetzt. Über die Konsole lässt sich hier auf einfache Art und Weise zusätzliche Treiber einbinden. Relevant ist dies im Allgemeinen nur für sehr neue Netzwerk bzw. SATA Treiber, da Windows 7 von Haus aus schon sehr viele Geräte unterstützt.</p>
<p>Manchmal ist es schwierig den passenden Treiber zu finden. Hilfreich dabei ist die PCI Device ID. Mit dieser eindeutigen ID kann man den Hersteller (VEN_XYZ) und das entsprechende Gerät (DEV_…) über eine Google Suche ermitteln. </p>
<p>Um diese ID zu ermitteln muss man zuerst die Kommandozeilen Option im WinPE Boot Image aktivieren (Eigenschaften des Images).</p>
<p>Danach kann man per F8 eine Kommandozeile auf dem System mit den fehlenden Treibern starten und per</p>
<p>wmic nic get PNPDeviceID</p>
<p>bzw.</p>
<p>wmic idecontroller get deviceid</p>
<p>die IDs ermitteln. Ein Beispiel der Ausgabe ist im folgenden Bild dargestellt:</p>
<p><a href="http://www.mbaeker.de/wp-content/uploads/2011/10/pciid.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="pciid" border="0" alt="pciid" src="http://www.mbaeker.de/wp-content/uploads/2011/10/pciid_thumb.png" width="530" height="425" /></a></p>
<p>Relevant sind hier nur die PCI\VEN… Einträge.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mbaeker.de/2011/10/sccm-in-winpe-fehlende-treiber-ermitteln/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SCOM: Neue Management Packs Anfang Oktober 2011</title>
		<link>http://www.mbaeker.de/2011/10/scom-neue-management-packs-anfang-oktober-2011/</link>
		<comments>http://www.mbaeker.de/2011/10/scom-neue-management-packs-anfang-oktober-2011/#comments</comments>
		<pubDate>Sun, 09 Oct 2011 17:15:18 +0000</pubDate>
		<dc:creator>markus</dc:creator>
				<category><![CDATA[Deutsch]]></category>
		<category><![CDATA[Operations Manager]]></category>
		<category><![CDATA[System Center]]></category>
		<category><![CDATA[SC Software Updates]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.mbaeker.de/2011/10/scom-neue-management-packs-anfang-oktober-2011/</guid>
		<description><![CDATA[Momentan scheint Microsoft fleißig bei Entwicklung von Management Packs zu sein. Ein Monat passiert nichts und jetzt schon zwei Aktualisierung von zentralen Management Packs. Diesmal war das Active Directory MP an der Reihe: Neue Management Packs im Zeitraum zwischen 02.10.2011 und 09.10.2011 Active Directory Server 2000 (Discovery) 6.0.7670.0 Active Directory Server 2003 (Discovery) 6.0.7670.0 Active [...]]]></description>
			<content:encoded><![CDATA[<p>Momentan scheint Microsoft fleißig bei Entwicklung von Management Packs zu sein. Ein Monat passiert nichts und jetzt schon zwei Aktualisierung von zentralen Management Packs.</p>
<p>Diesmal war das Active Directory MP an der Reihe:</p>
<p>Neue Management Packs im Zeitraum zwischen 02.10.2011 und 09.10.2011</p>
<ul>
<ul>
<li><a href="http://download.microsoft.com/download/f/5/4/f54f86e3-731b-4c5e-8d3a-1761bcfe0c80/Microsoft.Windows.Server.AD.2000.Discovery.mp" target="_blank">Active Directory Server 2000 (Discovery) 6.0.7670.0</a></li>
<li><a href="http://download.microsoft.com/download/f/5/4/f54f86e3-731b-4c5e-8d3a-1761bcfe0c80/Microsoft.Windows.Server.AD.2003.Discovery.mp" target="_blank">Active Directory Server 2003 (Discovery) 6.0.7670.0</a></li>
<li><a href="http://download.microsoft.com/download/f/5/4/f54f86e3-731b-4c5e-8d3a-1761bcfe0c80/Microsoft.Windows.Server.AD.2003.Monitoring.mp" target="_blank">Active Directory Server 2003 (Monitoring) 6.0.7670.0</a></li>
<li><a href="http://download.microsoft.com/download/f/5/4/f54f86e3-731b-4c5e-8d3a-1761bcfe0c80/Microsoft.Windows.Server.AD.2008.Discovery.mp" target="_blank">Active Directory Server 2008 (Discovery) 6.0.7670.0</a></li>
<li><a href="http://download.microsoft.com/download/f/5/4/f54f86e3-731b-4c5e-8d3a-1761bcfe0c80/Microsoft.Windows.Server.AD.2008.Monitoring.mp" target="_blank">Active Directory Server 2008 (Monitoring) 6.0.7670.0</a></li>
<li><a href="http://download.microsoft.com/download/f/5/4/f54f86e3-731b-4c5e-8d3a-1761bcfe0c80/Microsoft.Windows.Server.AD.ClientMonitoring.mp" target="_blank">Active Directory Server Client (Monitoring) 6.0.7670.0</a></li>
<li><a href="http://download.microsoft.com/download/f/5/4/f54f86e3-731b-4c5e-8d3a-1761bcfe0c80/Microsoft.Windows.Server.AD.Library.mp" target="_blank">Active Directory Server Common Library 6.0.7670.0</a></li>
<li><a href="http://download.microsoft.com/download/f/5/4/f54f86e3-731b-4c5e-8d3a-1761bcfe0c80/System Center Monitoring Pack for Microsoft Active Directory.docx" target="_blank">MP Guide Active Directory Server 2000</a></li>
</ul>
</ul>
<p>Die Änderungen beziehen sich nur auf Bugfixes. Einer Implementierung sollte somit nichts im Wege stehen.</p>
<ul>Eine Besonderheit ist aber zu beachten: Da Windows 2000 nicht mehr supported ist, ist auch das 2000er MP nicht aktualisiert worden und nicht mehr enthalten. (Ausnahme: Der Discovery Part)</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.mbaeker.de/2011/10/scom-neue-management-packs-anfang-oktober-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SCOM: Neue Management Packs Ende September 2011</title>
		<link>http://www.mbaeker.de/2011/10/scom-neue-management-packs-ende-september-2011/</link>
		<comments>http://www.mbaeker.de/2011/10/scom-neue-management-packs-ende-september-2011/#comments</comments>
		<pubDate>Sat, 01 Oct 2011 17:05:10 +0000</pubDate>
		<dc:creator>markus</dc:creator>
				<category><![CDATA[Configuration Manager]]></category>
		<category><![CDATA[Deutsch]]></category>
		<category><![CDATA[Operations Manager]]></category>
		<category><![CDATA[System Center]]></category>
		<category><![CDATA[Core]]></category>
		<category><![CDATA[SC Software Updates]]></category>
		<category><![CDATA[SCCM]]></category>
		<category><![CDATA[scom]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.mbaeker.de/?p=738</guid>
		<description><![CDATA[Juhu! Endlich wieder ein paar neue Management Packs (MP) auf der SCOM 2007 Front!. Nach langem wurde wieder das Core OS MP aktualisiert. Folgende Änderungen wurden dabei gemacht: The September 2011 release (version 6.0.6957.0) of the System Center Monitoring Pack for the Windows Server Operating System includes the following changes: Optimized operating system performance collection [...]]]></description>
			<content:encoded><![CDATA[<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; float: left; padding-top: 0px; border: 0px;" title="folder_calenders" src="http://www.mbaeker.de/wp-content/uploads/2011/10/folder_calenders.png" alt="folder_calenders" width="92" height="92" align="left" border="0" />Juhu! Endlich wieder ein paar neue Management Packs (MP) auf der SCOM 2007 Front!. Nach langem wurde wieder das Core OS MP aktualisiert.</p>
<p>Folgende Änderungen wurden dabei gemacht:</p>
<p>The September 2011 release (version 6.0.6957.0) of the System Center Monitoring Pack for the Windows Server Operating System includes the following changes:</p>
<ul>
<li>Optimized operating system performance collection rules.</li>
<li>Added two new operating system-specific reports:
<ul>
<li>Performance by System</li>
<li>Performance by Utilization</li>
</ul>
</li>
</ul>
<p><span id="more-738"></span></p>
<ul>
<li>Added support for the Server Manager Best Practices Analyzer (BPA). The monitoring pack now collects BPA results from monitored servers and returns the BPA state to Operations Manager.</li>
<li>Added support to discover and monitor Cluster Shared Volumes (CSV).</li>
<li>Modified collection rules to include the latest service packs and hotfixes.</li>
<li>Changed the threshold for the “Average Disk Seconds Per Read”, “Average Disk Seconds Per Transfer”, and “Average Disk Seconds Per Write” monitors to 0.04.</li>
<li>Added new monitors for “Disk $ Idle Time” and “Current Disk Queue Length”.</li>
<li>Changed the monitor types for disk performance from Average Samples to Consecutive Samples to reduce noise and improve collected data.</li>
<li>“Logical Disk Availability Monitor” has been renamed to “File System Error or Corruption”.</li>
</ul>
<p>&nbsp;</p>
<p>Auch das SCCM 2007 Management Pack wurde aktualisiert. Wichtige Neuerungen sind:</p>
<ul>
<li>Added Support for 64-bit Operations Manager 2007 R2 Agent</li>
<li>Added Support for Configuration Manager 2007 Features</li>
<li>Und viele weitere Monitore zur Überwachung von Teilbereichen von SCCM.</li>
</ul>
<p>Hier die direkten Links:</p>
<p>Neue Management Packs im Zeitraum zwischen 17.09.2011 und 01.10.2011 :</p>
<ul>
<li><a href="http://download.microsoft.com/download/8/C/9/8C914631-B221-49E4-B623-18D158737FA0/Microsoft.SystemCenter.ConfigurationManager.2007.mp" target="_blank">Microsoft System Center Configuration Manager 2007 6.0.6000.3</a></li>
<li><a href="http://download.microsoft.com/download/f/7/b/f7b960c9-7392-4c5a-bab4-efbb8a66ec2a/Microsoft.Windows.Server.2000.mp" target="_blank">Windows Server 2000 Operating System 6.0.6957.0</a></li>
<li><a href="http://download.microsoft.com/download/f/7/b/f7b960c9-7392-4c5a-bab4-efbb8a66ec2a/Microsoft.Windows.Server.2003.mp" target="_blank">Windows Server 2003 Operating System 6.0.6957.0</a></li>
<li><a href="http://download.microsoft.com/download/f/7/b/f7b960c9-7392-4c5a-bab4-efbb8a66ec2a/Microsoft.Windows.Server.2008.Discovery.mp" target="_blank">Windows Server 2008 Operating System (Discovery) 6.0.6957.0</a></li>
<li><a href="http://download.microsoft.com/download/f/7/b/f7b960c9-7392-4c5a-bab4-efbb8a66ec2a/Microsoft.Windows.Server.2008.Monitoring.mp" target="_blank">Windows Server 2008 Operating System (Monitoring) 6.0.6957.0</a></li>
<li><a href="http://download.microsoft.com/download/f/7/b/f7b960c9-7392-4c5a-bab4-efbb8a66ec2a/Microsoft.Windows.Server.2008.R2.Monitoring.BPA.mp" target="_blank">Windows Server 2008 R2 Best Practice Analyzer Monitoring 6.0.6957.0</a></li>
<li><a href="http://download.microsoft.com/download/f/7/b/f7b960c9-7392-4c5a-bab4-efbb8a66ec2a/Microsoft.Windows.Server.ClusterSharedVolumeMonitoring.mp" target="_blank">Windows Server Cluster Shared Volume Monitoring 6.0.6957.0</a></li>
<li><a href="http://download.microsoft.com/download/f/7/b/f7b960c9-7392-4c5a-bab4-efbb8a66ec2a/Microsoft.Windows.Server.Library.mp" target="_blank">Windows Server Operating System Library 6.0.6957.0</a></li>
<li><a href="http://download.microsoft.com/download/8/C/9/8C914631-B221-49E4-B623-18D158737FA0/CM07_OM07_MPGuide.doc" target="_blank">MP Guide Configuration Manager 2007 SP2</a></li>
<li><a href="http://download.microsoft.com/download/f/7/b/f7b960c9-7392-4c5a-bab4-efbb8a66ec2a/OM2007_MP_WinSerBas.doc" target="_blank">MP Guide Core OS </a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.mbaeker.de/2011/10/scom-neue-management-packs-ende-september-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 8 Preview auf WeTab</title>
		<link>http://www.mbaeker.de/2011/09/windows-8-preview-auf-wetab/</link>
		<comments>http://www.mbaeker.de/2011/09/windows-8-preview-auf-wetab/#comments</comments>
		<pubDate>Tue, 27 Sep 2011 17:20:12 +0000</pubDate>
		<dc:creator>markus</dc:creator>
				<category><![CDATA[Deutsch]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.mbaeker.de/?p=733</guid>
		<description><![CDATA[Diesmal nur ein Link: Ein Kollege von mir hat den Aufwand betrieben Windows 8 auf einem WeTab zum Laufen zu bekommen und dies auf seinem Blog beschrieben: http://mymathom.wordpress.com/2011/09/27/windows-8-dev-preview-auf-wetab/ Vorteil am WeTab ist, dass es eine Intel Atom CPU hat und daher die normale x86 Variante installiert werden kann.]]></description>
			<content:encoded><![CDATA[<p>Diesmal nur ein Link: Ein Kollege von mir hat den Aufwand betrieben Windows 8 auf einem WeTab zum Laufen zu bekommen und dies auf seinem Blog beschrieben: <a href="http://mymathom.wordpress.com/2011/09/27/windows-8-dev-preview-auf-wetab/" target="_blank">http://mymathom.wordpress.com/2011/09/27/windows-8-dev-preview-auf-wetab/</a></p>
<p>Vorteil am WeTab ist, dass es eine Intel Atom CPU hat und daher die normale x86 Variante installiert werden kann.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mbaeker.de/2011/09/windows-8-preview-auf-wetab/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SCCM: Verteilung von Visio und Project 2010</title>
		<link>http://www.mbaeker.de/2011/09/sccm-verteilung-von-visio-und-project-2010/</link>
		<comments>http://www.mbaeker.de/2011/09/sccm-verteilung-von-visio-und-project-2010/#comments</comments>
		<pubDate>Sun, 11 Sep 2011 16:36:06 +0000</pubDate>
		<dc:creator>markus</dc:creator>
				<category><![CDATA[Configuration Manager]]></category>
		<category><![CDATA[Deutsch]]></category>
		<category><![CDATA[System Center]]></category>
		<category><![CDATA[KMS]]></category>
		<category><![CDATA[SP1]]></category>
		<category><![CDATA[win7]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.mbaeker.de/?p=710</guid>
		<description><![CDATA[Die Verteilung von Visio und Project 2010 ist ähnlich wie Office 2010 sehr einfach. Im Gegensatz zu Office 2010, bei dem man eine MSP Datei erstellt, ändert man bei Visio und Project die config.xml Datei entsprechend ab. Diese Datei liegt im Visio.ww bzw PrjStd.ww Verzeichnis. Eine Beispiel-Config kann so aus sehen: (innerhalb des umgebenen &#60;Configuration&#62; [...]]]></description>
			<content:encoded><![CDATA[<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; float: left; padding-top: 0px; border: 0px;" title="Person-group-add" src="http://www.mbaeker.de/wp-content/uploads/2011/09/Person-group-add.png" alt="Person-group-add" width="57" height="57" align="left" border="0" />Die Verteilung von Visio und Project 2010 ist ähnlich wie Office 2010 sehr einfach. Im Gegensatz zu Office 2010, bei dem man eine MSP Datei erstellt, ändert man bei Visio und Project die config.xml Datei entsprechend ab. Diese Datei liegt im Visio.ww bzw PrjStd.ww Verzeichnis.</p>
<p>Eine Beispiel-Config kann so aus sehen: (innerhalb des umgebenen &lt;Configuration&gt; Bereichs)</p>
<pre class="brush: xml; title: ; notranslate">
&lt;Display Level=&quot;none&quot; CompletionNotice=&quot;no&quot; SuppressModal=&quot;no&quot; AcceptEula=&quot;yes&quot; /&gt;
&lt;Logging Type=&quot;Verbose&quot; Path=&quot;%temp%&quot; Template=&quot;VisioProject_Setup(*).txt&quot; /&gt;
&lt;USERNAME Value=&quot;Benutzername&quot; /&gt;
&lt;COMPANYNAME Value=&quot;Firma&quot; /&gt;
&lt;PIDKEY Value=&quot;abcdefg&quot; /&gt;
&lt;INSTALLLOCATION Value=&quot;%programfiles%\Microsoft Office&quot; /&gt;
</pre>
<p><span id="more-710"></span></p>
<p>Interessant wird es beim PIDKEY. Office 2010 kann wie Windows Vista oder Win7 mithilfe eines KMS aktiviert werden. Diese Möglichkeit sollte man auch wenn irgend möglich verwenden. Microsoft installiert grundsätzlich bei Visio und Project die Premium Version. Als diese Version versucht sich das Produkt danach auch am KMS zu aktivieren. Möchte man eine andere Version verteilen, so muss man bei PIDKEY den jeweiligen KMS Standardkey hinterlegen (Achtung! Dies ist nicht der KMS Key zur Aktivierung des KMS Servers!!!). Den Key finden man auf den Microsoft Webseiten:</p>
<p>Für Visio:</p>
<table width="575" border="0" cellspacing="0" cellpadding="2">
<tbody>
<tr>
<td valign="top" width="200"><strong>Visio-Edition </strong></td>
<td valign="top" width="373"><strong>KMS-Clientschlüssel </strong></td>
</tr>
<tr>
<td valign="top" width="200">Visio Standard 2010</td>
<td valign="top" width="373">767HD-QGMWX-8QTDB-9G3R2-KHFGJ</td>
</tr>
<tr>
<td valign="top" width="200">Visio Professional 2010</td>
<td valign="top" width="373">7MCW8-VRQVK-G677T-PDJCM-Q8TCP</td>
</tr>
<tr>
<td valign="top" width="200">Visio Premium 2010</td>
<td valign="top" width="373">D9DWC-HPYVV-JGF4P-BTWQB-WX8BJ</td>
</tr>
</tbody>
</table>
<p><a title="http://technet.microsoft.com/de-de/library/ee624357.aspx" href="http://technet.microsoft.com/de-de/library/ee624357.aspx">http://technet.microsoft.com/de-de/library/ee624357.aspx</a></p>
<p>Für Project:</p>
<table width="579" border="0" cellspacing="0" cellpadding="2">
<tbody>
<tr>
<td valign="top" width="217"><strong>Project-Edition</strong></td>
<td valign="top" width="360"><strong>KMS-Clientschlüssel</strong></td>
</tr>
<tr>
<td valign="top" width="217">Project Standard 2010</td>
<td valign="top" width="360">4HP3K-88W3F-W2K3D-6677X-F9PGB</td>
</tr>
<tr>
<td valign="top" width="217">Project Professional 2010</td>
<td valign="top" width="360">YGX6F-PGV49-PGW3J-9BTGG-VHKC6</td>
</tr>
</tbody>
</table>
<p><a title="http://technet.microsoft.com/en-us/library/ee624355.aspx" href="http://technet.microsoft.com/en-us/library/ee624355.aspx">http://technet.microsoft.com/en-us/library/ee624355.aspx</a></p>
<p>Zum Schluss sollte man noch das aktuelle Service Pack (aktuell: 1) herunterladen und die EXE mittels 7Zip öffnen. Die Darin enthaltenen MSP Dateien landen dann im jeweiligen Updates Verzeichnis. Das hat zur Folge, dass direkt beim Setup das entsprechende Service Pack mitinstalliert wird. Wenn man sich die Mühe machen möchte, dann kann man natürlich auch die jeweiligen Hotfixe dort ablegen.</p>
<p>Eine liste mit Downloadlinks zu allen Office 2010 SP1 Installationspaketen finden man hier:</p>
<p><a title="http://support.microsoft.com/kb/2510690/de" href="http://support.microsoft.com/kb/2510690/de">http://support.microsoft.com/kb/2510690/de</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mbaeker.de/2011/09/sccm-verteilung-von-visio-und-project-2010/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SCCM: Dual-Use der Treiberpakete</title>
		<link>http://www.mbaeker.de/2011/09/sccm-dual-use-der-treiberpakete/</link>
		<comments>http://www.mbaeker.de/2011/09/sccm-dual-use-der-treiberpakete/#comments</comments>
		<pubDate>Sat, 03 Sep 2011 17:38:12 +0000</pubDate>
		<dc:creator>markus</dc:creator>
				<category><![CDATA[Configuration Manager]]></category>
		<category><![CDATA[Deutsch]]></category>
		<category><![CDATA[System Center]]></category>
		<category><![CDATA[SCCM]]></category>
		<category><![CDATA[Treiber]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.mbaeker.de/?p=694</guid>
		<description><![CDATA[SCCM 2007 hat eine relativ gute Verwaltung der Treiber für eine Betriebssysteminstallation (OSD), die auch automatisch erkannt und installiert werden. Gerade wenn man viel Zeit und Mühe in die Pflege dieser Liste gesteckt hat, möchte man vielleicht auch bereits installierte Systeme mit den Treibern aktualisieren. Mir ist keine SCCM interne Möglichkeit bekannt dies umzusetzen. Auch [...]]]></description>
			<content:encoded><![CDATA[<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; float: left; padding-top: 0px; border: 0px;" title="clasp" src="http://www.mbaeker.de/wp-content/uploads/2011/09/clasp.png" alt="clasp" width="64" height="64" align="left" border="0" />SCCM 2007 hat eine relativ gute Verwaltung der Treiber für eine Betriebssysteminstallation (OSD), die auch automatisch erkannt und installiert werden. Gerade wenn man viel Zeit und Mühe in die Pflege dieser Liste gesteckt hat, möchte man vielleicht auch bereits installierte Systeme mit den Treibern aktualisieren.</p>
<p>Mir ist keine SCCM interne Möglichkeit bekannt dies umzusetzen. Auch eine versuchsweise erstellte Tasksequenz, die nur die Treiberauswahl beinhaltet bricht auf einem Zielsystem ab, da es nicht im richtigen Kontext (WinPE) ausgeführt wird.<br />
<span id="more-694"></span><br />
Daher habe ich durch die Ergänzung des Treiberpaketes durch drei Dateien diese Möglichkeit geschaffen. Dazu verwende ich dpinst.exe. Das ist ein Tool von Microsoft, um Treiberpakete (DP) zu verwalten und zu installieren. Treiberpakete sind im Grunde nichts weiteres als ein Verzeichnis, in dem in Unterordner verschiedene Treiber und deren INF Dateien liegen – also exakt das, was ein Driver Package bei SCCM auch ist <img class="wlEmoticon wlEmoticon-smile" style="border-style: none;" src="http://www.mbaeker.de/wp-content/uploads/2011/09/wlEmoticon-smile.png" alt="Smiley" />.</p>
<p>Das Programm findet man im Windows Driver Kit (<a title="http://www.microsoft.com/download/en/details.aspx?displaylang=en&amp;id=11800" href="http://www.microsoft.com/download/en/details.aspx?displaylang=en&amp;id=11800">http://www.microsoft.com/download/en/details.aspx?displaylang=en&amp;id=11800</a>). Dazu lädt man sich das ISO File herunter und öffnet es mit 7Zip (oder mountet es in einem virtuellen CD Laufwerk).</p>
<p>Im Unterordner WDK ist die Datei je nachdem ob man x64 oder x86 Betriebsysteme hat im File dfx_x64fre_cab001.cab bzw. dfx_x86fre_cab001.cab zu finden und kann erneut direkt in 7Zip geöffnet werden. Daraus einfach die _dpinst.exe_00005 extrahieren und in dpinst.exe umbenennen.</p>
<p>Die dpinst.exe legt man dann in das Root-Verzeichnis des Treiberpakets und ergänzt diese um zwei weitere Dateien:</p>
<p>dpinst.xml:</p>
<pre class="brush: xml; title: ; notranslate">

    *
</pre>
<p>und zum Starten der Installation:</p>
<p>Rundpinst.cmd:</p>
<pre class="brush: plain; title: ; notranslate">
&quot;%~dp0dpinst.exe&quot; /SA /Q /SH /SE /C /SW
</pre>
<p>dabei werden die passenden und neueren PNP Treiber ermittelt und ohne nachfrage installiert. Ein automatischer Neustart erfolgt nicht.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mbaeker.de/2011/09/sccm-dual-use-der-treiberpakete/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SCCM: Windows Update Dienst korrigieren</title>
		<link>http://www.mbaeker.de/2011/09/sccm-windows-update-dienst-korrigieren/</link>
		<comments>http://www.mbaeker.de/2011/09/sccm-windows-update-dienst-korrigieren/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 18:10:31 +0000</pubDate>
		<dc:creator>markus</dc:creator>
				<category><![CDATA[Configuration Manager]]></category>
		<category><![CDATA[Deutsch]]></category>
		<category><![CDATA[System Center]]></category>
		<category><![CDATA[SCCM]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.mbaeker.de/?p=688</guid>
		<description><![CDATA[Manchmal macht der Windows Update Dienst Probleme. Um einige Probleme zu korrigieren setzte ich schon seit längerer Zeit ein kleines Script ein: Es stoppt zuerst die Dienste, stellt sicher, dass VBS Script funktionieren, registriert notwendige XML, Windows Update und Bits Bibliotheken, korrigiert die Sicherheitseinstellungen des Windows Update Dienstes, löscht den lokalen Cache und registriert am [...]]]></description>
			<content:encoded><![CDATA[<p>Manchmal macht der Windows Update Dienst Probleme. Um einige Probleme zu korrigieren setzte ich schon seit längerer Zeit ein kleines Script ein:</p>
<p><span id="more-688"></span>
<pre class="brush: plain; title: ; notranslate">
&lt;pre&gt;
NET STOP WUAUSERV
NET STOP BITS

rem sicherstellen das vbs funktioniert:
reg add &quot;HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Script Host\Settings&quot; /v Enabled /t REG_DWORD /d 1 /f

rem gegen Fehler 1026?
rd /s /q &quot;%systemroot%\SoftwareDistribution&quot;
regsvr32 /s cdm.dll
regsvr32 /s bitsprx2.dll
regsvr32 /s bitsprx3.dll
regsvr32 /s iuengine.dll
regsvr32 /s qmgr.dll
regsvr32 /s qmgrprxy.dll
regsvr32 /s msxml.dll
regsvr32 /s msxml2.dll
regsvr32 /s msxml3.dll
regsvr32 /s urlmon.dll
regsvr32 /s wuapi.dll
regsvr32 /s wuaueng.dll
regsvr32 /s wuaueng1.dll
regsvr32 /s wuauserv.dll
regsvr32 /s wucltui.dll
regsvr32 /s wups.dll
regsvr32 /s wuweb.dll

sc sdset wuauserv D:(A;;CCLCSWRPWPDTLOCRRC;;;SY)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCLCSWLOCRRC;;;AU)(A;;CCLCSWRPWPDTLOCRRC;;;PU)

NET START BITS
NET START WUAUSERV
regsvr32 /s softpub.dll
regsvr32 /s initpki.dll
regsvr32 /s mssip32.dll
regsvr32 /s wintrust.dll
regsvr32 /s dssenh.dll
regsvr32 /s rsaenh.dll
regsvr32 /s gpkcsp.dll
regsvr32 /s sccbase.dll
regsvr32 /s slbcsp.dll
regsvr32 /s cryptdlg.dll
regsvr32 /s jscript.dll
</pre>
<p>Es stoppt zuerst die Dienste, stellt sicher, dass VBS Script funktionieren, registriert notwendige XML, Windows Update und Bits Bibliotheken, korrigiert die Sicherheitseinstellungen des Windows Update Dienstes, löscht den lokalen Cache und registriert am Ende nochmal die PKI Bibliotheken.</p>
<p>Das Ganze kann man dann natürlich auch remote anstoßen:</p>
<pre class="brush: plain; title: ; notranslate">

@echo off
set PC=%1
if .%PC%==. set /p PC=Enter Computer Name to start repair:
call %~dp0findip.bat %PC%
if %ip%.==. goto fehler
echo Start Windows Update Agent Installation %PC%
call updatewua.cmd %pc%
echo Versuche Reparatur des Windows Update Agents
psexec \\%PC% /c /f %~dp0repair.cmd
goto ende
:fehler
echo Abbruch, da Rechner %PC% auf ping nicht antwortet.
:ende
set ip=
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.mbaeker.de/2011/09/sccm-windows-update-dienst-korrigieren/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SCOM: Neue Management Packs Mitte August 2011</title>
		<link>http://www.mbaeker.de/2011/08/scom-neue-management-packs-mitte-august-2011/</link>
		<comments>http://www.mbaeker.de/2011/08/scom-neue-management-packs-mitte-august-2011/#comments</comments>
		<pubDate>Wed, 24 Aug 2011 10:17:00 +0000</pubDate>
		<dc:creator>markus</dc:creator>
				<category><![CDATA[Deutsch]]></category>
		<category><![CDATA[Operations Manager]]></category>
		<category><![CDATA[System Center]]></category>
		<category><![CDATA[SC Software Updates]]></category>
		<category><![CDATA[scom]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.mbaeker.de/2011/08/scom-neue-management-packs-mitte-august-2011/</guid>
		<description><![CDATA[In den letzten 14 Tagen wurde nur ein MP aktualisiert: Neue Management Packs im Zeitraum zwischen 09.08.2011 und 24.08.2011 Windows Azure 6.1.7724.0]]></description>
			<content:encoded><![CDATA[<p>In den letzten 14 Tagen wurde nur ein MP aktualisiert:</p>
<p>Neue Management Packs im Zeitraum zwischen 09.08.2011 und 24.08.2011 </p>
<ul>
<li><a href="http://download.microsoft.com/download/5/9/2/592F33B7-0321-4066-A409-7AC514E4388B/Microsoft.SystemCenter.Azure.mp" target="_blank">Windows Azure 6.1.7724.0</a> </li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.mbaeker.de/2011/08/scom-neue-management-packs-mitte-august-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

