<?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; Operations Manager</title>
	<atom:link href="http://www.mbaeker.de/tag/opsmgr/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>SCOM: Neue Management Packs Ende Dezember 2011</title>
		<link>http://www.mbaeker.de/2011/12/scom-neue-management-packs-ende-dezember-2011/</link>
		<comments>http://www.mbaeker.de/2011/12/scom-neue-management-packs-ende-dezember-2011/#comments</comments>
		<pubDate>Sat, 31 Dec 2011 15:18:31 +0000</pubDate>
		<dc:creator>markus</dc:creator>
				<category><![CDATA[Deutsch]]></category>
		<category><![CDATA[Operations Manager]]></category>
		<category><![CDATA[SC Software Updates]]></category>

		<guid isPermaLink="false">http://www.mbaeker.de/?p=800</guid>
		<description><![CDATA[Zum Jahresabschluss noch ein kleiner Überblick über die neuesten Managementpacks in den letzten 39 Tagen: Neue Management Packs im Zeitraum zwischen 22.11.2011 und 31.12.2011 Keine neuen Managementpacks Scheinbar liegt die Priorität bei Microsoft momentan auf System Center Operations Manager 2012.]]></description>
			<content:encoded><![CDATA[<p>Zum Jahresabschluss noch ein kleiner Überblick über die neuesten Managementpacks in den letzten 39 Tagen:</p>
<p>  Neue Management Packs im Zeitraum zwischen 22.11.2011 und 31.12.2011
<ul>
<li>Keine neuen Managementpacks</li>
</ul>
<p>  Scheinbar liegt die Priorität bei Microsoft momentan auf System Center Operations Manager 2012.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mbaeker.de/2011/12/scom-neue-management-packs-ende-dezember-2011/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>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>Jetzt ist der Artikel auch online&#8230;</title>
		<link>http://www.mbaeker.de/2011/04/jetzt-ist-der-artikel-auch-online/</link>
		<comments>http://www.mbaeker.de/2011/04/jetzt-ist-der-artikel-auch-online/#comments</comments>
		<pubDate>Tue, 12 Apr 2011 15:55:04 +0000</pubDate>
		<dc:creator>markus</dc:creator>
				<category><![CDATA[Deutsch]]></category>
		<category><![CDATA[Operations Manager]]></category>
		<category><![CDATA[Computerwoche]]></category>
		<category><![CDATA[Icinga]]></category>
		<category><![CDATA[nagios]]></category>
		<category><![CDATA[scom]]></category>

		<guid isPermaLink="false">http://www.mbaeker.de/2011/04/jetzt-ist-der-artikel-auch-online/</guid>
		<description><![CDATA[Wie bereits angekündigt, ist mein SCOM vs. Icinga Artikel jetzt auch auf Computerwoche online erschienen: Microsofts System Center Operations Manager und der Nagios-Ableger Icinga sind verbreitete IT-Monitoring-Lösungen. Hier eine Gegenüberstellung der beiden Werkzeuge. http://www.computerwoche.de/software/software-infrastruktur/2366841/]]></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="rss" border="0" alt="rss" align="left" src="http://www.mbaeker.de/wp-content/uploads/2011/04/rss.png" width="41" height="41" />Wie bereits angekündigt, ist mein SCOM vs. Icinga Artikel jetzt auch auf Computerwoche online erschienen:</p>
<blockquote><p>Microsofts System Center Operations Manager und der Nagios-Ableger Icinga sind verbreitete IT-Monitoring-Lösungen. Hier eine Gegenüberstellung der beiden Werkzeuge.</p>
</blockquote>
<p><a href="http://www.computerwoche.de/software/software-infrastruktur/2366841/ ">http://www.computerwoche.de/software/software-infrastruktur/2366841/ </a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mbaeker.de/2011/04/jetzt-ist-der-artikel-auch-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Direktes &#214;ffnen einer Ansicht in der SCOM Konsole</title>
		<link>http://www.mbaeker.de/2011/03/direktes-ffnen-einer-ansicht-in-der-scom-konsole/</link>
		<comments>http://www.mbaeker.de/2011/03/direktes-ffnen-einer-ansicht-in-der-scom-konsole/#comments</comments>
		<pubDate>Mon, 21 Mar 2011 17:53:05 +0000</pubDate>
		<dc:creator>markus</dc:creator>
				<category><![CDATA[Deutsch]]></category>
		<category><![CDATA[Operations Manager]]></category>
		<category><![CDATA[System Center]]></category>
		<category><![CDATA[autoit]]></category>
		<category><![CDATA[HAL]]></category>
		<category><![CDATA[scom]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://www.mbaeker.de/?p=425</guid>
		<description><![CDATA[Manchmal möchte man die SCOM Konsole direkt mit einer bestimmten Ansicht/View starten. Dies ist zum Beispiel interessant, wenn man die Konsole nutzt, um den aktuellen Systemzustand auf einem großen Monitor dazustellen. Dazu gibt es einen alten, aber immer noch zutreffenden Blogartikel: http://myitforum.com/cs2/blogs/dhite/archive/2007/12/16/starting-the-opsmgr-2007-operations-console-from-the-command-line.aspx Dabei ist zu beachten, dass der Viewname der interne Name der Sicht ist. [...]]]></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="icon-11" border="0" alt="icon-11" align="left" src="http://www.mbaeker.de/wp-content/uploads/2011/03/icon-11.png" width="64" height="64" />Manchmal möchte man die SCOM Konsole direkt mit einer bestimmten Ansicht/View starten. Dies ist zum Beispiel interessant, wenn man die Konsole nutzt, um den aktuellen Systemzustand auf einem großen Monitor dazustellen.</p>
<p>Dazu gibt es einen alten, aber immer noch zutreffenden Blogartikel: <a title="http://myitforum.com/cs2/blogs/dhite/archive/2007/12/16/starting-the-opsmgr-2007-operations-console-from-the-command-line.aspx" href="http://myitforum.com/cs2/blogs/dhite/archive/2007/12/16/starting-the-opsmgr-2007-operations-console-from-the-command-line.aspx">http://myitforum.com/cs2/blogs/dhite/archive/2007/12/16/starting-the-opsmgr-2007-operations-console-from-the-command-line.aspx</a></p>
<p>Dabei ist zu beachten, dass der Viewname der interne Name der Sicht ist. Diesen bekommt man teilweise nur heraus, wenn das Management Pack in de Authoring Console öffnet.</p>
<p>Alternativ kann man auch per AutoIT eine kleine EXE kompilieren, die die Konsole öffnet und per simulierte Tastendrücke die entsprechende Sicht öffnet.</p>
<p>Ein Beispielskipt kann so aussehen:</p>
<blockquote><p>Run(@ProgramFilesDir &amp; &quot;\System Center Operations Manager 2007\Microsoft.MOM.UI.Console.exe&quot;)     <br />WinWaitActive(&quot;System Center Operations Manager 2007 – SITENAME&quot;)      <br />Sleep(5000) ;five seconds      <br />WinActivate(&quot;System Center Operations Manager 2007 – SITENAME&quot;)      <br />send(&quot;Overv&quot;)      <br />send(&quot;+&quot;)      <br />sleep(2000)      <br />send(&quot;{DOWN}&quot;)      <br />sleep(5000)      <br />send(&quot;{DOWN}&quot;)      <br />send(&quot;{APPSKEY}&quot;)      <br />send(&quot;{DOWN}{DOWN}{DOWN}&quot;)      <br />send(&quot;{ENTER}&quot;)      <br />WinWaitActive(&quot;Service Overview&quot;)      <br />Sleep(5000)      <br />send(&quot;^T&quot;) ;send controll t (action pane ausblenden)      <br />WinSetState(&quot;Service Overview&quot;,&quot;&quot;,@SW_MAXIMIZE)</p>
</blockquote>
<p>Kurze Erklärung: Zuerst die Konsole öffnen (mit Variable, um möglichst sprachunabhängig zu sein), warten bis die Konsole aktiv ist (hier wird nach dem Titel des Fensters geschaut, in dem auch der Name de Site enthalten ist!), das Fenster sicherheitshalber nochmal aktivieren, Die ersten Buchstaben des Ordners eintippen (in diesem Beispiel Overview), per + aufklappen, zur zweiten Sicht im Ordner gehen, Kontextmenü öffnen, dort Öffnen in neuem Fenste auswählen, warten bis diese Sicht offen ist, die Actionpane ausblenden und am Ende nochmals das Sichtfenster maximieren.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mbaeker.de/2011/03/direktes-ffnen-einer-ansicht-in-der-scom-konsole/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fehlermeldung bei der Installation des Visio Add-In for Disk Space</title>
		<link>http://www.mbaeker.de/2011/03/fehlermeldung-bei-der-installation-des-visio-add-in-for-disk-space/</link>
		<comments>http://www.mbaeker.de/2011/03/fehlermeldung-bei-der-installation-des-visio-add-in-for-disk-space/#comments</comments>
		<pubDate>Wed, 09 Mar 2011 17:36:58 +0000</pubDate>
		<dc:creator>markus</dc:creator>
				<category><![CDATA[Deutsch]]></category>
		<category><![CDATA[Operations Manager]]></category>
		<category><![CDATA[System Center]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[Debug]]></category>
		<category><![CDATA[msi]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[scom]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.mbaeker.de/?p=395</guid>
		<description><![CDATA[Sollte bei der Installation des Visio Add-In for Disk Space (http://visiotoolbox.com/2010/add-ins.aspx)  für den System Center Operations Manager (SCOM) auf einem Windows 7 x64 mit Visio 2010 x64 folgende Fehlermeldung auftauchen: so liegt das laut dem Installer-Log (wenn man das Setup mit msiexec /I … /l* install.log aufruft) an einem fehlenden Registry Key: &#160; […] Action [...]]]></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="icon-06" src="http://www.mbaeker.de/wp-content/uploads/2011/03/icon-06.png" border="0" alt="icon-06" width="64" height="64" align="left" />Sollte bei der Installation des Visio Add-In for Disk Space (<a title="http://visiotoolbox.com/2010/add-ins.aspx" href="http://visiotoolbox.com/2010/add-ins.aspx">http://visiotoolbox.com/2010/add-ins.aspx</a>)  für den System Center Operations Manager (SCOM) auf einem Windows 7 x64 mit Visio 2010 x64 folgende Fehlermeldung auftauchen:</p>
<p><a rel="shadowbox" href="http://www.mbaeker.de/wp-content/uploads/2011/03/visio-add-in-error.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="visio-add-in-error" src="http://www.mbaeker.de/wp-content/uploads/2011/03/visio-add-in-error_thumb.png" border="0" alt="visio-add-in-error" width="425" height="344" /></a></p>
<p>so liegt das laut dem Installer-Log (wenn man das Setup mit msiexec /I … /l* install.log aufruft) an einem fehlenden Registry Key:</p>
<p>&nbsp;</p>
<blockquote><p>[…]</p>
<p>Action 09:29:31: RollbackCleanup. Removing backup files</p>
<p>DEBUG: Error 2835:  The control ErrorIcon was not found on dialog ErrorDialog</p>
<p>The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2835. The arguments are: ErrorIcon, ErrorDialog,</p>
<p>Error 1720. There is a problem with this Windows Installer package. A script required for this install to complete could not be run. Contact your support personnel or package vendor.  <span style="background-color: #ffff00;">Custom action VisSolPublish_BumpVisioChangeId script error -2147024894, WshShell.RegRead: Ungültige Wurzel in Registrierungsschlüssel &#8220;HKLM\Software\Microsoft\Office\Visio\ConfigChangeID</span>&#8220;. Line 3, Column 1,</p>
<p>MSI (s) (14:34) [09:29:33:624]: Product: Visio Add-In for Disk Space Monitoring &#8212; Error 1720. There is a problem with this Windows Installer package. A script required for this install to complete could not be run. Contact your support personnel or package vendor.  Custom action VisSolPublish_BumpVisioChangeId script error -2147024894, WshShell.RegRead: Ungültige Wurzel in Registrierungsschlüssel &#8220;HKLM\Software\Microsoft\Office\Visio\ConfigChangeID&#8221;. Line 3, Column 1,</p>
<p>Action 09:29:33: Rollback. Rolling back action:</p>
<p>[…]</p></blockquote>
<p>In der Registry ist dieser Schlüssel auch nicht zu finden.</p>
<p>Legt man ihn in folgender Form an:</p>
<blockquote><p>Windows Registry Editor Version 5.00</p>
<p>[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\Visio]</p>
<p>&#8220;ConfigChangeID&#8221;=dword:00000000</p></blockquote>
<p>so läuft das Setup erfolgreich durch.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mbaeker.de/2011/03/fehlermeldung-bei-der-installation-des-visio-add-in-for-disk-space/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SCOM: Integration von Ubuntu</title>
		<link>http://www.mbaeker.de/2011/01/scom-integration-von-ubuntu/</link>
		<comments>http://www.mbaeker.de/2011/01/scom-integration-von-ubuntu/#comments</comments>
		<pubDate>Wed, 26 Jan 2011 18:23:00 +0000</pubDate>
		<dc:creator>markus</dc:creator>
				<category><![CDATA[Deutsch]]></category>
		<category><![CDATA[Operations Manager]]></category>
		<category><![CDATA[System Center]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[scom]]></category>
		<category><![CDATA[SCX]]></category>

		<guid isPermaLink="false">http://www.mbaeker.de/?p=375</guid>
		<description><![CDATA[System Center Operations Manager 2007 R2 unterstützt von sich aus bereits die Linux Derivate RedHat und SuSe. Vor Weihnachten habe ich mich noch mit dieser guten aber komplexeren Anleitung herumgeschlagen, um das RedHat Paket per Alien in ein Debian Paket umzuwandeln: http://www.muscetta.com/2009/05/30/installing-the-opsmgr-2007-r2-scx-agent-on-ubuntu/ Es funktioniert auch gut mit x86 und x64 Systemen. Mittlerweile hat mich ein [...]]]></description>
			<content:encoded><![CDATA[<p>System Center Operations Manager 2007 R2 unterstützt von sich aus bereits die Linux Derivate RedHat und SuSe.</p>
<p>Vor Weihnachten habe ich mich noch mit dieser guten aber komplexeren Anleitung herumgeschlagen, um das RedHat Paket per Alien in ein Debian Paket umzuwandeln:</p>
<p><a href="http://www.muscetta.com/2009/05/30/installing-the-opsmgr-2007-r2-scx-agent-on-ubuntu/" target="_blank">http://www.muscetta.com/2009/05/30/installing-the-opsmgr-2007-r2-scx-agent-on-ubuntu/</a></p>
<p>Es funktioniert auch gut mit x86 und x64 Systemen.</p>
<p>Mittlerweile hat mich ein Kollege auf folgendes fertige Paket auf codeplex hingewiesen:</p>
<p><a href="http://scxagentubuntu10.codeplex.com/">http://scxagentubuntu10.codeplex.com/</a></p>
<p>dort gibt es bereits ein fertiges x86 Paket und ein passendes Managementpack. Beide Wege führen zum Ziel: Überwachung eines Ubuntu/Debian Systems. Der zweite ist aber deutlich einfacher <img src='http://www.mbaeker.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.mbaeker.de/2011/01/scom-integration-von-ubuntu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SCOM: Diverse Management Packs</title>
		<link>http://www.mbaeker.de/2011/01/scom-diverse-management-packs/</link>
		<comments>http://www.mbaeker.de/2011/01/scom-diverse-management-packs/#comments</comments>
		<pubDate>Mon, 10 Jan 2011 13:32:53 +0000</pubDate>
		<dc:creator>markus</dc:creator>
				<category><![CDATA[Deutsch]]></category>
		<category><![CDATA[Operations Manager]]></category>
		<category><![CDATA[System Center]]></category>
		<category><![CDATA[Core]]></category>
		<category><![CDATA[SAP]]></category>
		<category><![CDATA[scom]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.mbaeker.de/?p=370</guid>
		<description><![CDATA[Im Rahmen meiner beruflichen Tätigkeit sind diverse Management Packs für den Operations Manager (SCOM) angefallen. Diese stehen jetzt kostenlos zum Download bereit: http://www.its-technidata.de/de/im_focus/microsoftsystemcenter/Seiten/KostenloserDownloadSCOM.aspx Darunter sind (einfache) MPs für: BlackBerry Email Router Monitoring Microsoft CRM Email Router Datacore Storage Server FileZilla FTP Server Monitoring Kiwi Syslog Server Monitoring SAP MaxDB Monitoring Oracle Database Server Monitoring Basic [...]]]></description>
			<content:encoded><![CDATA[<p>Im Rahmen meiner beruflichen Tätigkeit sind diverse Management Packs für den Operations Manager (SCOM) angefallen.</p>
<p>Diese stehen jetzt kostenlos zum Download bereit: <a href="http://www.its-technidata.de/de/im_focus/microsoftsystemcenter/Seiten/KostenloserDownloadSCOM.aspx" target="_blank">http://www.its-technidata.de/de/im_focus/microsoftsystemcenter/Seiten/KostenloserDownloadSCOM.aspx</a></p>
<p>Darunter sind (einfache) MPs für:</p>
<ul>
<li>BlackBerry Email Router Monitoring</li>
<li>Microsoft CRM Email Router</li>
<li>Datacore Storage Server</li>
<li>FileZilla FTP Server Monitoring</li>
<li>Kiwi Syslog Server Monitoring</li>
<li>SAP MaxDB Monitoring</li>
<li>Oracle Database Server Monitoring</li>
<li>Basic SAP Monitoring auf Windows Servern</li>
<li>WAMP Monitoring</li>
</ul>
<p>Fragen und Anregungen dürfen auch gerne an diesen Post als Diskussion angehängt werden!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mbaeker.de/2011/01/scom-diverse-management-packs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SCOM ACS over forest borders</title>
		<link>http://www.mbaeker.de/2010/12/scom-acs-over-forest-borders/</link>
		<comments>http://www.mbaeker.de/2010/12/scom-acs-over-forest-borders/#comments</comments>
		<pubDate>Wed, 29 Dec 2010 16:54:16 +0000</pubDate>
		<dc:creator>markus</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Operations Manager]]></category>
		<category><![CDATA[System Center]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[Debug]]></category>
		<category><![CDATA[scom]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.mbaeker.de/?p=361</guid>
		<description><![CDATA[Sometimes the acs forwarder doesn&#8217;t connects successfully to the acs server and states in the operations manager event log, that you have to activate debugging to see more details. You can activate it by following this instruction: Browse to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\AdtAgent\Parameters Create DWORD value = TraceFlags Edit the TraceFlags entry and enter decimal value 524420 Restart [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-364" title="icon-01" src="http://www.mbaeker.de/wp-content/uploads/2010/12/icon-01.png" alt="" width="64" height="64" />Sometimes the acs forwarder doesn&#8217;t connects successfully to the acs server and states in the operations manager event log, that you have to activate debugging to see more details.</p>
<p>You can activate it by following this instruction:</p>
<ol>
<li>Browse to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\AdtAgent\Parameters</li>
<li>Create DWORD value = TraceFlags</li>
<li>Edit the TraceFlags entry and enter decimal value <strong>524420</strong></li>
<li>Restart the AdtAgent service</li>
</ol>
<p>(Source: <a href="http://helpmemanage.blogspot.com/2007/05/enable-detailed-logging-for-acs.html" target="_blank">http://helpmemanage.blogspot.com/2007/05/enable-detailed-logging-for-acs.html</a>)</p>
<p>You can find the log under c:\windows\temp</p>
<p>One cause can be that the acs cannot operate over forest borders or from a workgroup (kerberos authentication &#8211; some reason for the scom agent).</p>
<p>The workaround is a little bit mor complicated that a simple certificate exchange.</p>
<p>A good and working explanation can be found here:</p>
<p><a href="http://www.directtechnology.com/BlogEngine/post/2010/08/17/Problems-with-non-trusted-computers-reporting-to-ACS-%28Audit-Collection-Services%29.aspx" target="_blank">http://www.directtechnology.com/BlogEngine/post/2010/08/17/Problems-with-non-trusted-computers-reporting-to-ACS-%28Audit-Collection-Services%29.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mbaeker.de/2010/12/scom-acs-over-forest-borders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>System Center Operations Manager 2007 R2 Cumulative Update 3</title>
		<link>http://www.mbaeker.de/2010/10/system-center-operations-manager-2007-r2-cumulative-update-3/</link>
		<comments>http://www.mbaeker.de/2010/10/system-center-operations-manager-2007-r2-cumulative-update-3/#comments</comments>
		<pubDate>Tue, 05 Oct 2010 16:38:40 +0000</pubDate>
		<dc:creator>markus</dc:creator>
				<category><![CDATA[Deutsch]]></category>
		<category><![CDATA[Operations Manager]]></category>
		<category><![CDATA[System Center]]></category>
		<category><![CDATA[HAL]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[SC Software Updates]]></category>
		<category><![CDATA[scom]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://www.mbaeker.de/?p=347</guid>
		<description><![CDATA[Seit dem 1. Oktober steht das CU3 für den SCOM bereit. Es beinhaltet nicht viele Neuerungen dafür aber einige Fehlerbehebungen. Eine Installation lohnt sich somit! Integriert ist darüber hinaus das Cross Pattform Update 3. Bei der Installation bitte folgendes beachten: Es reicht nicht aus einfach das Update zu installieren, sondern es müssen noch ein paar [...]]]></description>
			<content:encoded><![CDATA[<p><strong> </strong></p>
<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; float: left; padding-top: 0px; border: 0px;" title="configuration" src="http://www.mbaeker.de/wp-content/uploads/2010/10/configuration.png" border="0" alt="configuration" width="64" height="64" align="left" />Seit dem 1. Oktober steht das <a href="http://support.microsoft.com/kb/2251525/en-us" target="_blank">CU3 für den SCOM</a> bereit. Es beinhaltet nicht viele Neuerungen dafür aber einige Fehlerbehebungen. Eine Installation lohnt sich somit! Integriert ist darüber hinaus das Cross Pattform Update 3.</p>
<p>Bei der Installation bitte folgendes beachten: Es reicht nicht aus einfach das Update zu installieren, sondern es müssen noch ein paar manuelle Schritte durchgeführt werdden. Dazu zählt hauptsächlich das Ausführen von SQL Statements. Details findet ihr auf der Knowledge Base Seite unter dem Abschnitt:</p>
<h6><strong>Manual operations that must be performed after you update the Root Management Server and Data Warehouse</strong></h6>
<p>Hier der Link zum Update: <a title="http://support.microsoft.com/kb/2251525/en-us" href="http://support.microsoft.com/kb/2251525/en-us" target="_blank">http://support.microsoft.com/kb/2251525/en-us</a></p>
<p>Und wenn man schon am Updaten ist, dann kann man auch das <a href="http://support.microsoft.com/kb/2222955/en-us" target="_blank">Cross Platform Cumulative Update 3 for Systems Center Operations Manager 2007 R2</a> mit installieren. Es beinhaltet das oben erwähnte CU2, so dass man seine Linux Agents nur einmal aktualisieren muss.</p>
<p>Cross Plattform CU3 Version (z.B. Management Pack): 6.1.7000.277</p>
<p>Cross Plattform CU3 Agent Version: 1.0.4-265</p>
<p>FB_Addon_TelNo{ height:15px !important;  white-space: nowrap !important;  background-color: #0ff0ff;}</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mbaeker.de/2010/10/system-center-operations-manager-2007-r2-cumulative-update-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

