<?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>opsmode</title>
	<atom:link href="http://www.opsmode.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.opsmode.com</link>
	<description>the operations manager notepad</description>
	<lastBuildDate>Thu, 24 Nov 2011 19:56:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Creating a xplat script monitor from the console, System Center 2012 Operations Manager</title>
		<link>http://www.opsmode.com/2011/11/creating-a-xplat-script-monitor-from-the-console-system-center-2012-operations-manager/</link>
		<comments>http://www.opsmode.com/2011/11/creating-a-xplat-script-monitor-from-the-console-system-center-2012-operations-manager/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 13:40:08 +0000</pubDate>
		<dc:creator>mats</dc:creator>
				<category><![CDATA[Authoring]]></category>
		<category><![CDATA[Console]]></category>
		<category><![CDATA[Cross Platform]]></category>
		<category><![CDATA[OpsMgr]]></category>
		<category><![CDATA[OpsMgr 2012]]></category>

		<guid isPermaLink="false">http://www.opsmode.com/2011/11/creating-a-xplat-script-monitor-from-the-console-system-center-2012-operations-manager/</guid>
		<description><![CDATA[Announced in the Technet forum last week was the new ability to create a UNIX/Linux Shell Command Monitor. Download the file from here, run it and after importing the file called Microsoft.Unix.ShellCommand.Library.mpb you will be able to create a two and/or three state UNIX/Linux script monitor from within the Operations Manager console. To create a [...]<p>Post from: <a href="http://www.opsmode.com">www.opsmode.com</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Announced in the <a href="http://social.technet.microsoft.com/Forums/en-US/operationsmanagerunixandlinux/thread/9a30b000-2bbe-4b8c-b64c-1b17f10f2a2b" target="_blank">Technet forum</a> last week was the new ability to create a UNIX/Linux Shell Command Monitor. Download the file from <a href="http://www.microsoft.com/download/en/details.aspx?displaylang=en&amp;id=27974" target="_blank">here</a>, run it and after importing the file called <strong>Microsoft.Unix.ShellCommand.Library.mpb </strong>you will be able to create a two and/or three state UNIX/Linux script monitor from within the Operations Manager console.</p>
<p><a href="http://www.opsmode.com/wp-content/uploads/2011/11/image.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.opsmode.com/wp-content/uploads/2011/11/image_thumb.png" width="370" height="292" /></a></p>
<p>To create a monitor simply start the Create a Unit monitor wizard.</p>
<p>Make your choices:</p>
<p><a href="http://www.opsmode.com/wp-content/uploads/2011/11/image1.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.opsmode.com/wp-content/uploads/2011/11/image_thumb1.png" width="536" height="665" /></a></p>
<p>Give the monitor a <strong>Name</strong> select <strong>Monitor target</strong> and choose if it will be enabled.</p>
<p>Select how often your script will run on the agent.</p>
<p>In the <strong>Shell Command details</strong> you need to provide your command or path to binary/script without line breaks. So my little script that checks if a file exists.</p>
<blockquote><p>#!/bin/bash      <br />if ! [ -f /tmp/OPSMGR.SE ];       <br />then       <br />echo &quot;Error&quot;       <br />else       <br />echo &quot;OK&quot;       <br />fi</p>
</blockquote>
<p>Needs to be put in a file on the agent or as a one-liner. Otherwise it wont be possible to continue the wizard and a red exclamation will show, like in this picture</p>
<p><a href="http://www.opsmode.com/wp-content/uploads/2011/11/image2.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.opsmode.com/wp-content/uploads/2011/11/image_thumb2.png" width="320" height="222" /></a></p>
<p>Putting the script in one line makes it look like this, I removed #!/bin/bash so the line wont be marked as a comment..</p>
<blockquote><p>if ! [ -f /tmp/OPSMGR.SE ]; then echo &quot;Error&quot;; else echo &quot;OK&quot;; fi</p>
</blockquote>
<p><a href="http://www.opsmode.com/wp-content/uploads/2011/11/image3.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.opsmode.com/wp-content/uploads/2011/11/image_thumb3.png" width="380" height="360" /></a></p>
<p>Specifying the <strong>Error Expression </strong></p>
<p><a href="http://www.opsmode.com/wp-content/uploads/2011/11/image4.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.opsmode.com/wp-content/uploads/2011/11/image_thumb4.png" width="528" height="100" /></a></p>
<p>Specifying the <strong>Healthy Expression</strong></p>
<p><a href="http://www.opsmode.com/wp-content/uploads/2011/11/image5.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.opsmode.com/wp-content/uploads/2011/11/image_thumb5.png" width="534" height="94" /></a></p>
<p>Finish the wizard and your monitor is now running.</p>
<p><a href="http://www.opsmode.com/wp-content/uploads/2011/11/image6.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.opsmode.com/wp-content/uploads/2011/11/image_thumb6.png" width="811" height="453" /></a></p>
<p>Post from: <a href="http://www.opsmode.com">www.opsmode.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.opsmode.com/2011/11/creating-a-xplat-script-monitor-from-the-console-system-center-2012-operations-manager/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Running both OpsMgr 2012 beta and 2007 R2 consoles on the same workstation</title>
		<link>http://www.opsmode.com/2011/09/running-both-opsmgr-2012-beta-and-2007-r2-consoles-on-same-client/</link>
		<comments>http://www.opsmode.com/2011/09/running-both-opsmgr-2012-beta-and-2007-r2-consoles-on-same-client/#comments</comments>
		<pubDate>Sat, 17 Sep 2011 12:32:46 +0000</pubDate>
		<dc:creator>mats</dc:creator>
				<category><![CDATA[Console]]></category>
		<category><![CDATA[OpsMgr]]></category>
		<category><![CDATA[OpsMgr 2007 R2]]></category>
		<category><![CDATA[OpsMgr 2012 Beta]]></category>

		<guid isPermaLink="false">http://www.opsmode.com/2011/09/running-both-opsmgr-2012-beta-and-2007-r2-consoles-on-same-client/</guid>
		<description><![CDATA[Connecting to a OpsMgr 2012 beta management server with a OpsMgr 2007 R2 console doesn&#8217;t work either does connecting with the 2012 beta console to a 2007 R2 RMS. If you like me wants to be able to connect to both a 2012 beta management group and a 2007 R2 management group you can run [...]<p>Post from: <a href="http://www.opsmode.com">www.opsmode.com</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Connecting to a OpsMgr 2012 beta management server with a OpsMgr 2007 R2 console doesn&#8217;t work either does connecting with the 2012 beta console to a 2007 R2 RMS.</p>
<p>If you like me wants to be able to connect to both a 2012 beta management group and a 2007 R2 management group you can run 2 consoles on the same workstation. Just start with running the OpsMgr 2012 beta setup on your workstation, if an OpsMgr R2 console is already installed it will be upgraded, otherwise just install the console. If you don&#8217;t want to go through the setup GUI just run this from an elevated command prompt: <em>setup.exe /silent /install /components:OMConsole /UseMicrosoftUpdate:[0|1]</em></p>
<p>When this is done, load your R2 media and install the console from that one.</p>
<p>This will give you two folders in <strong>%programfiles%</strong>: </p>
<p><a href="http://www.opsmode.com/wp-content/uploads/2011/09/folder.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="folder" border="0" alt="folder" src="http://www.opsmode.com/wp-content/uploads/2011/09/folder_thumb.png" width="298" height="65" /></a></p>
<p>And also on the <strong>Start menu</strong> and <strong>Programs and Features</strong>: </p>
<p><a href="http://www.opsmode.com/wp-content/uploads/2011/09/startmenu.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="startmenu" border="0" alt="startmenu" src="http://www.opsmode.com/wp-content/uploads/2011/09/startmenu_thumb.png" width="409" height="195" /></a>&#160;</p>
<p><a href="http://www.opsmode.com/wp-content/uploads/2011/09/features.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="features" border="0" alt="features" src="http://www.opsmode.com/wp-content/uploads/2011/09/features_thumb.png" width="305" height="41" /></a></p>
<p>Now we are able to run the consoles simultaneously</p>
<p><a href="http://www.opsmode.com/wp-content/uploads/2011/09/console.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="console" border="0" alt="console" src="http://www.opsmode.com/wp-content/uploads/2011/09/console_thumb.png" width="628" height="362" /></a></p>
<p>But you will soon notice that the Connect to Server.. windows is showing now and then when opening a console. This is also mentioned in this post:   <br /><a title="http://www.opsmode.com/2011/03/manage-multiple-management-groups-with-powershell/" href="http://www.opsmode.com/2011/03/manage-multiple-management-groups-with-powershell/">http://www.opsmode.com/2011/03/manage-multiple-management-groups-with-powershell/</a></p>
<p><a href="http://www.opsmode.com/wp-content/uploads/2011/09/connect-to.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="connect to" border="0" alt="connect to" src="http://www.opsmode.com/wp-content/uploads/2011/09/connect-to_thumb.png" width="521" height="279" /></a></p>
<p>To get rid of this I edit the shortcut and add <strong>/Server:OPS-OMbeta-MS01.opsmgr.se </strong>for my 2012 console and <strong>/Server:OM.opsmode.local</strong> for the 2007 R2 console    <br />&quot;C:\Program Files\System Center Operations Manager 2007\Microsoft.MOM.UI.Console.exe&quot; /Server:OM.opsmode.local    <br />&quot;C:\Program Files\System Center Operations Manager 2012\Console\Microsoft.EnterpriseManagement.Monitoring.Console.exe&quot; /server:OPS-OMbeta-MS01.opsmgr.se</p>
<p>Post from: <a href="http://www.opsmode.com">www.opsmode.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.opsmode.com/2011/09/running-both-opsmgr-2012-beta-and-2007-r2-consoles-on-same-client/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Download Management Packs, OpsMgr 2007 and 2012 Beta</title>
		<link>http://www.opsmode.com/2011/07/download-management-packs-opsmgr-2012-beta/</link>
		<comments>http://www.opsmode.com/2011/07/download-management-packs-opsmgr-2012-beta/#comments</comments>
		<pubDate>Fri, 22 Jul 2011 10:48:22 +0000</pubDate>
		<dc:creator>mats</dc:creator>
				<category><![CDATA[Management Pack]]></category>
		<category><![CDATA[OpsMgr]]></category>
		<category><![CDATA[management pack]]></category>
		<category><![CDATA[OpsMgr 2012 Beta]]></category>

		<guid isPermaLink="false">http://www.opsmode.com/2011/07/download-management-packs-opsmgr-2012-beta/</guid>
		<description><![CDATA[One nice features is the possibility to download MP&#8217;s from the Catalog in the OpsMgr Console. I really like being able to download MP&#8217;s to disk, that way I can back up the actual .MP file. Not having to download a .MSI, installing it and remove it from Programs and Features / Add/Remove programs if [...]<p>Post from: <a href="http://www.opsmode.com">www.opsmode.com</a></p>
]]></description>
			<content:encoded><![CDATA[<p>One nice features is the possibility to download MP&#8217;s from the Catalog in the OpsMgr Console.   <br />I really like being able to download MP&#8217;s to disk, that way I can back up the actual .MP file. Not having to download a .MSI, installing it and remove it from Programs and Features / Add/Remove programs if I don&#8217;t want it there. What you don&#8217;t get when you download it from the Console is the Management Pack Guide, and that one needs to be read before importing the MP.     <br />So, to get hold of the guide document from the Console you do as follows.</p>
<p>Go to <strong>Administration,</strong> <strong>right click Management Packs</strong> (you can right click anywhere) and chose <strong>Download Management Packs.</strong></p>
<p>Chose your download location and then click <strong>Add</strong></p>
<p>Search for the MP you want to download, and select it in the list. Then click <strong>Properties</strong></p>
<p><a href="http://www.opsmode.com/wp-content/uploads/2011/07/image2.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.opsmode.com/wp-content/uploads/2011/07/image_thumb2.png" width="706" height="437" /></a></p>
<p>And there you have it! </p>
<p><a href="http://www.opsmode.com/wp-content/uploads/2011/07/image3.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.opsmode.com/wp-content/uploads/2011/07/image_thumb3.png" width="498" height="432" /></a></p>
<p>A nice feature here would be to right click and Save As, but that doesn&#8217;t work. How ever you can click it and it will open in Word, if you don&#8217;t have Word installed you can mark it and copy the the link with Ctrl+C and paste it in a browser to open it on another machine.</p>
<p>Post from: <a href="http://www.opsmode.com">www.opsmode.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.opsmode.com/2011/07/download-management-packs-opsmgr-2012-beta/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Web Console prerequisites, OpsMgr 2012 Beta</title>
		<link>http://www.opsmode.com/2011/07/web-console-prerequisites-opsmgr-2012-beta/</link>
		<comments>http://www.opsmode.com/2011/07/web-console-prerequisites-opsmgr-2012-beta/#comments</comments>
		<pubDate>Thu, 21 Jul 2011 15:43:51 +0000</pubDate>
		<dc:creator>mats</dc:creator>
				<category><![CDATA[OpsMgr]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[OpsMgr 2012 Beta]]></category>
		<category><![CDATA[Web Console]]></category>

		<guid isPermaLink="false">http://www.opsmode.com/2011/07/web-console-prerequisites-opsmgr-2012-beta/</guid>
		<description><![CDATA[When installing the Web Console there is a couple of components that is required, the Operations Manager 2012 Supported Configuration (http://technet.microsoft.com/en-us/library/hh205990.aspx) list these: Recommended processor speed: 2.8 GHz or faster. Minimum memory: not less than 2 GB. Operating System: Windows Server 2008 R2 Processor Architecture: must be AMD64 Internet Information Services (IIS) v7.5 or later, [...]<p>Post from: <a href="http://www.opsmode.com">www.opsmode.com</a></p>
]]></description>
			<content:encoded><![CDATA[<p>When installing the Web Console there is a couple of components that is required, the Operations Manager 2012 Supported Configuration (<a title="http://technet.microsoft.com/en-us/library/hh205990.aspx" href="http://technet.microsoft.com/en-us/library/hh205990.aspx">http://technet.microsoft.com/en-us/library/hh205990.aspx</a>) list these:</p>
<ul>
<li>Recommended processor speed: 2.8 GHz or faster.</li>
<li>Minimum memory: not less than 2 GB.</li>
<li>Operating System: Windows Server 2008 R2</li>
<li>Processor Architecture: must be AMD64</li>
<li>Internet Information Services (IIS) v7.5 or later, with the IIS Management Console and the following role services installed:
<ul>
<li>Static Content </li>
<li>Default Document </li>
<li>Directory Browsing </li>
<li>HTTP Errors </li>
<li>HTTP Logging </li>
<li>Request Monitor </li>
<li>Request Filtering</li>
<li>Static Content Compression</li>
<li>Web Server (IIS) Support</li>
<li>IIS 6 Metabase Compatibility</li>
<li>ASP.NET </li>
<li>Windows Authentication</li>
</ul>
</li>
<li>Default website: must have an http or https binding configured</li>
<li>Both .NET Framework 3.5 SP1 and .NET Framework 4 is required for setup to run. For more information, see the following.
<ul>
<li><a href="http://go.microsoft.com/fwlink/p/?LinkId=214947">.NET Framework 3.5 SP1 redistributable package</a></li>
<li><a href="http://go.microsoft.com/fwlink/p/?LinkId=201924">.NET Framework 4 redistributable package</a></li>
</ul>
</li>
</ul>
<p>&#160;</p>
<p>The role services is easily installed with powershell, which makes it a little quicker then using Server Manager GUI:</p>
<blockquote><p>Import-Module ServerManager     <br />Add-WindowsFeature NET-Framework-Core,Web-WebServer,Web-Static-Content,Web-Default-Doc,Web-Dir-Browsing,Web-Http-Errors,Web-Asp-Net,Web-Http-Logging,Web-Request-Monitor,Web-Windows-Auth,Web-Filtering,Web-Stat-Compression,Web-Mgmt-Console,Web-Metabase</p>
</blockquote>
<p>As you might see I&#8217;ve also added <em>NET-Framework-Core</em>&#160; (.NET Framework 3.5.1) there as well.</p>
<p>When the IIS install is ready you should install .NET Framework 4. (<a title="http://www.microsoft.com/download/en/details.aspx?id=17851" href="http://www.microsoft.com/download/en/details.aspx?id=17851">http://www.microsoft.com/download/en/details.aspx?id=17851</a>)</p>
<p>If you installed .NET Framework 4 before installing the IIS you&#8217;ll get an error:</p>
<p><a href="http://www.opsmode.com/wp-content/uploads/2011/07/image.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="The ASP.NET 4.0 handler is not registered with IIS." border="0" alt="The ASP.NET 4.0 handler is not registered with IIS." src="http://www.opsmode.com/wp-content/uploads/2011/07/image_thumb.png" width="647" height="72" /></a>    <br /><em><font size="1">The ASP.NET 4.0 handler is not registered with IIS</font></em>&#160;</p>
<p>To fix this, the Operations Manager 2012 Deployment document states that you should run:</p>
<blockquote><p>%WINDIR%\Microsoft.NET\Framework64\v4.0.30319\aspnet_regiis.exe -r</p>
</blockquote>
<p>I suggest that that you add the <strong><em>-enable</em></strong> option (%WINDIR%\Microsoft.NET\Framework64\v4.0.30319\aspnet_regiis.exe -enable -r), that enables the ASP.NET ISAPI extension. And gets rid of this prerequisites error:</p>
<p><a href="http://www.opsmode.com/wp-content/uploads/2011/07/image1.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="Web Console cannot operate properly because the ISAPI and CGI Restrictions in Internet Information Services (IIS) are disabled or missing for ASP.NET 4.0." border="0" alt="Web Console cannot operate properly because the ISAPI and CGI Restrictions in Internet Information Services (IIS) are disabled or missing for ASP.NET 4.0." src="http://www.opsmode.com/wp-content/uploads/2011/07/image_thumb1.png" width="645" height="109" /></a>    <br /><font size="1"><em>Web Console cannot operate properly because the ISAPI and CGI Restrictions in Internet Information Services (IIS) are disabled or missing for ASP.NET 4.0.</em></font></p>
<p>Lastly do a restart of the server before running the setup again.</p>
<p>Post from: <a href="http://www.opsmode.com">www.opsmode.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.opsmode.com/2011/07/web-console-prerequisites-opsmgr-2012-beta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Manage multiple Management Groups with PowerShell</title>
		<link>http://www.opsmode.com/2011/03/manage-multiple-management-groups-with-powershell/</link>
		<comments>http://www.opsmode.com/2011/03/manage-multiple-management-groups-with-powershell/#comments</comments>
		<pubDate>Sat, 05 Mar 2011 20:09:14 +0000</pubDate>
		<dc:creator>mats</dc:creator>
				<category><![CDATA[OpsMgr]]></category>
		<category><![CDATA[Powershell]]></category>

		<guid isPermaLink="false">http://www.opsmode.com/2011/03/manage-multiple-management-groups-with-powershell/</guid>
		<description><![CDATA[Sometimes we have more than one Management Group (MG), production, test and maybe a development environment. When opening the Operations Manager Console it connects with the last MG you were connected to. This is controlled by the registry value SDKServiceMachine in HKEY_CURRENT_USER\Software\Microsoft\Microsoft Operations Manager\3.0\User Settings If we want to control this, there is a switch [...]<p>Post from: <a href="http://www.opsmode.com">www.opsmode.com</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Sometimes we have more than one Management Group (MG), production, test and maybe a development environment. When opening the Operations Manager Console it connects with the last MG you were connected to. This is controlled by the registry value <strong>SDKServiceMachine </strong>in <strong>HKEY_CURRENT_USER\Software\Microsoft\Microsoft Operations Manager\3.0\User Settings</strong></p>
<p>If we want to control this, there is a switch when opening console:    <br /><strong>Microsoft.MOM.UI.Console.exe /Server:OPSRMS01.opsmgr.se</strong></p>
<p><a href="http://www.opsmode.com/wp-content/uploads/2011/03/image.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.opsmode.com/wp-content/uploads/2011/03/image_thumb.png" width="529" height="263" /></a></p>
<p>So for the console we can create different shortcuts for the MG&#8217;s with the switch..</p>
<p>When it comes to the Operations Manager Shell there isn&#8217;t any switch to do it the &#8220;easy way&#8221;. I do like this:</p>
<p>First I makes as many copy&#8217;s of the file <strong>Microsoft.EnterpriseManagement.OperationsManager.ClientShell.Startup.ps1</strong> as I have Management Groups. Renaming them to the different MG names, for example:     <br /><strong>Microsoft.EnterpriseManagement.OperationsManager.ClientShell.StartupOPSMGRdev.ps1 </strong>for my development environment.</p>
<p>Second I open the ..StartupOPSMGRdev.ps1-file in my preferred editor and change <strong>line 10</strong></p>
<p><a href="http://www.opsmode.com/wp-content/uploads/2011/03/image1.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.opsmode.com/wp-content/uploads/2011/03/image_thumb1.png" width="664" height="65" /></a></p>
<p>Just adding your RMS fqdn (remove <strong>: &#8220;&#8221;</strong>)</p>
<p>Third I make a copy of the Operations Manager Shell shortcut for every MG and change the .Startup.ps1 to the name you gave the Startup file, in my case it will be:    <br /><strong>Microsoft.EnterpriseManagement.OperationsManager.ClientShell.StartupOPSMGRdev.ps1</strong></p>
<p><a href="http://www.opsmode.com/wp-content/uploads/2011/03/image2.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.opsmode.com/wp-content/uploads/2011/03/image_thumb2.png" width="372" height="519" /></a></p>
<p>So now I have a shortcut for every Management Group in my environment.</p>
<p><a href="http://www.opsmode.com/wp-content/uploads/2011/03/image3.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.opsmode.com/wp-content/uploads/2011/03/image_thumb3.png" width="390" height="77" /></a></p>
<table border="0" cellspacing="0" cellpadding="2" width="704">
<tbody>
<tr>
<td valign="top" width="702">
<p><font style="style"><font style="background-color: #ffc000"><strong>Update!                  <br /></strong>Cory Delamarter have written a post on the same subject but with an other angle.                 <br />Check it out here:                 <br /></font></font><a title="http://blogs.technet.com/b/corydelamarter/archive/2011/03/25/using-the-operations-manager-command-shell-against-multiple-management-groups.aspx" href="http://blogs.technet.com/b/corydelamarter/archive/2011/03/25/using-the-operations-manager-command-shell-against-multiple-management-groups.aspx"><font style="background-color: #ffc000">http://blogs.technet.com/b/corydelamarter/archive/2011/03/25/using-the-operations-manager-command-shell-against-multiple-management-groups.aspx</font></a></p>
</td>
</tr>
</tbody>
</table>
<p>Post from: <a href="http://www.opsmode.com">www.opsmode.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.opsmode.com/2011/03/manage-multiple-management-groups-with-powershell/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Microsoft Community Contributor Award</title>
		<link>http://www.opsmode.com/2011/02/microsoft-community-contributor-award/</link>
		<comments>http://www.opsmode.com/2011/02/microsoft-community-contributor-award/#comments</comments>
		<pubDate>Thu, 17 Feb 2011 07:59:20 +0000</pubDate>
		<dc:creator>mats</dc:creator>
				<category><![CDATA[Community]]></category>

		<guid isPermaLink="false">http://www.opsmode.com/2011/02/microsoft-community-contributor-award/</guid>
		<description><![CDATA[In my mail today I found out that I have been awarded with the Microsoft Community Contributor Award. &#160; &#160; &#160; &#160; I&#8217;m really glad to get this kind of recognition! So what is the MCC Award you ask.. Microsoft Community Contributor Award Post from: www.opsmode.com<p>Post from: <a href="http://www.opsmode.com">www.opsmode.com</a></p>
]]></description>
			<content:encoded><![CDATA[<p>In my mail today I found out that I have been awarded with the Microsoft Community Contributor Award.</p>
<p><a href="http://www.opsmode.com/wp-content/uploads/2011/02/image1.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: left; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" align="left" src="http://www.opsmode.com/wp-content/uploads/2011/02/image_thumb1.png" width="346" height="141" /></a></p>
<p>&#160;</p>
<p>&#160;</p>
<p>&#160;</p>
<p>&#160;</p>
<p>I&#8217;m really glad to get this kind of recognition!</p>
<p>So what is the MCC Award you ask.. <a href="https://www.microsoftcommunitycontributor.com/faq.aspx" target="_blank">Microsoft Community Contributor Award</a></p>
<p>Post from: <a href="http://www.opsmode.com">www.opsmode.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.opsmode.com/2011/02/microsoft-community-contributor-award/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How-To handle application teams in Operations Manager</title>
		<link>http://www.opsmode.com/2011/02/how-to-handle-application-teams-in-operations-manager/</link>
		<comments>http://www.opsmode.com/2011/02/how-to-handle-application-teams-in-operations-manager/#comments</comments>
		<pubDate>Wed, 09 Feb 2011 15:53:03 +0000</pubDate>
		<dc:creator>mats</dc:creator>
				<category><![CDATA[OpsMgr]]></category>

		<guid isPermaLink="false">http://www.opsmode.com/2011/02/how-to-handle-application-teams-in-operations-manager/</guid>
		<description><![CDATA[This scenario is quite common here in Sweden and I get questions like this from customers and in forums. We have one team that administrates the infrastructure, Active Directory, MS Exchange, SQL server, Operations Manager etc. Then we have a application team that operates the business applications, for example Microsoft Dynamics CRM and a web [...]<p>Post from: <a href="http://www.opsmode.com">www.opsmode.com</a></p>
]]></description>
			<content:encoded><![CDATA[<p><font color="#333333">This scenario is quite common here in Sweden and I get questions like this from customers and in forums. </font></p>
<p><font color="#333333">We have one team that administrates the infrastructure, Active Directory, MS Exchange, SQL server, Operations Manager etc. Then we have a application team that operates the business applications, for example Microsoft Dynamics CRM and a web application called DinnerNow.</font></p>
<p><font color="#333333">The application team wants to be able to see alerts and status as well as changing thresholds and doing overrides on &quot;their&quot; applications and all dependencies like storage, databases and web sites in the OpsMgr console. On top of that they also wants to get notified trough e-mail in non business hours.</font></p>
<p><font color="#333333"><font size="4"><strong>Console          <br /></strong></font>So in this case we focus on the group that is administrating DinnerNow and Dynamics CRM.       <br />First we need some groups, I&#8217;ve created one main group (OpsMode Application Team) with 8 subgroups containing the various components of Dynamics CRM and DinnerNow.</font></p>
<p><a href="http://www.opsmode.com/wp-content/uploads/2011/02/clip_image001.png"><font color="#333333"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="clip_image001" border="0" alt="clip_image001" src="http://www.opsmode.com/wp-content/uploads/2011/02/clip_image001_thumb.png" width="517" height="287" /></font></a></p>
<ul>
<li><font color="#333333">DinnerNow Databases, contains objects from the SQL 2008 Database class</font> </li>
<li><font color="#333333">DinnerNow Storage and logging, contains objects from the Ubuntu server class</font> </li>
<li><font color="#333333">DinnerNow Web sites, contains objects from the IIS7 Web sites class</font> </li>
<li><font color="#333333">Dynamics CRM Application Servers, contains objects from the Microsoft Dynamics CRM 4.0 Server class</font> </li>
<li><font color="#333333">Dynamics CRM Data Disk, contains objects from the Logical Disk class</font> </li>
<li><font color="#333333">Dynamics CRM SQL components, contains objects from the SQL 2008 Database and SQL 2008 Agent Job class</font> </li>
<li><font color="#333333">Dynamics CRM Web sites, contains objects from the IIS 7 Web sites class</font> </li>
<li><font color="#333333">Dynamics CRM Windows Servers, contains objects from the Windows Computer class</font> </li>
</ul>
<p><font color="#333333">Second we need to create a User Role. I base this User Role on the Advanced Operator role, because the team need to do overrides and similar.</font></p>
<blockquote><p><font color="#333333" size="1" face="Verdana"><em>The Advanced Operator profile includes a set of privileges designed for users that need access to limited tweaking of monitoring         <br />configuration in addition to the Operators privileges. A role based on the Advanced Operators profile grants members the ability to override the configuration of rules and monitors for specific targets or groups of targets within the configured scope.</em></font></p>
</blockquote>
<p><font color="#333333">I name the user role, and add the members of the team. In this case its Marsellus Wallace and Vincent Vega.</font></p>
<p><a href="http://www.opsmode.com/wp-content/uploads/2011/02/clip_image002.png"><font color="#333333"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="clip_image002" border="0" alt="clip_image002" src="http://www.opsmode.com/wp-content/uploads/2011/02/clip_image002_thumb.png" width="463" height="453" /></font></a></p>
<p><font color="#333333">Then I chose what groups this user role will be able to handle.</font></p>
<p><a href="http://www.opsmode.com/wp-content/uploads/2011/02/clip_image003.png"><font color="#333333"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="clip_image003" border="0" alt="clip_image003" src="http://www.opsmode.com/wp-content/uploads/2011/02/clip_image003_thumb.png" width="431" height="267" /></font></a></p>
<p><font color="#333333">When choosing what views will be available I also check Active Alerts, Windows Computers, Microsoft SQL Server, Microsoft Windows Internet Information Services and Microsoft Windows Server.</font></p>
<p><a href="http://www.opsmode.com/wp-content/uploads/2011/02/clip_image004.png"><font color="#333333"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="clip_image004" border="0" alt="clip_image004" src="http://www.opsmode.com/wp-content/uploads/2011/02/clip_image004_thumb.png" width="466" height="471" /></font></a></p>
<p><font color="#333333">I then finish the wizard. (All the settings set in the wizard can later be changed if we would like.)      <br /></font><font color="#333333">Now we have a new User Role:</font></p>
<p><a href="http://www.opsmode.com/wp-content/uploads/2011/02/clip_image005.png"><font color="#333333"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="clip_image005" border="0" alt="clip_image005" src="http://www.opsmode.com/wp-content/uploads/2011/02/clip_image005_thumb.png" width="481" height="73" /></font></a></p>
<p><font color="#333333">And if I now log on the console with the user Vincent Vega I now only see the views we chose in the User Role Wizard.</font></p>
<p><a href="http://www.opsmode.com/wp-content/uploads/2011/02/image.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.opsmode.com/wp-content/uploads/2011/02/image_thumb.png" width="750" height="517" /></a></p>
<p><font color="#333333">We can create overrides on all management packs but only to computers that are members of a group that we chose in the wizard.      <br /></font><font color="#333333">When doing an override for a group, we only get to chose from the groups chosen earlier.</font></p>
<p><a href="http://www.opsmode.com/wp-content/uploads/2011/02/clip_image007.png"><font color="#333333"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="clip_image007" border="0" alt="clip_image007" src="http://www.opsmode.com/wp-content/uploads/2011/02/clip_image007_thumb.png" width="390" height="310" /></font></a></p>
<p><font color="#333333" size="4"><strong>Notifications</strong></font></p>
<p><font color="#333333">So now the team can view and take care of the monitoring in the Console. They also wants to get critical alerts through e-mail on times they are not in front of a console, ie non office hours.</font></p>
<p><font color="#333333">So to set this up we can use the groups created earlier. I assume that you have a working Notification Channel and your subscribers all set up, otherwise check these:</font></p>
<blockquote><p><font color="#333333" size="1" face="Verdana"><strong>How to Create and Configure the Notification Action Account          <br /></strong></font><a href="http://technet.microsoft.com/en-us/library/dd744866.aspx"><font color="#333333" size="1" face="Verdana">http://technet.microsoft.com/en-us/library/dd744866.aspx</font></a></p>
<p><font color="#333333" size="1" face="Verdana"><strong>Enable an E-mail Notification Channel          <br /></strong></font><a href="http://technet.microsoft.com/en-us/library/dd440883.aspx"><font color="#333333" size="1" face="Verdana">http://technet.microsoft.com/en-us/library/dd440883.aspx</font></a></p>
<p><font color="#333333" size="1" face="Verdana"><strong>Create Notification Subscribers</strong>         <br /></font><a href="http://technet.microsoft.com/en-us/library/dd440875.aspx"><font color="#333333" size="1" face="Verdana">http://technet.microsoft.com/en-us/library/dd440875.aspx</font></a></p>
</blockquote>
<p><font color="#333333">Creating a criteria for the subscription, it could look like this.</font></p>
<p><a href="http://www.opsmode.com/wp-content/uploads/2011/02/clip_image008.png"><font color="#333333"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="clip_image008" border="0" alt="clip_image008" src="http://www.opsmode.com/wp-content/uploads/2011/02/clip_image008_thumb.png" width="411" height="404" /></font></a></p>
<p><font color="#333333">This will send New Critical alerts from all the above groups classes to the subscriber.</font></p>
<p><font color="#333333"></font></p>
<p>Post from: <a href="http://www.opsmode.com">www.opsmode.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.opsmode.com/2011/02/how-to-handle-application-teams-in-operations-manager/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Putting Unix/Linux servers in MM with Powershell</title>
		<link>http://www.opsmode.com/2011/02/putting-unixlinux-servers-in-mm-with-powershell/</link>
		<comments>http://www.opsmode.com/2011/02/putting-unixlinux-servers-in-mm-with-powershell/#comments</comments>
		<pubDate>Wed, 09 Feb 2011 11:04:52 +0000</pubDate>
		<dc:creator>mats</dc:creator>
				<category><![CDATA[OpsMgr]]></category>
		<category><![CDATA[Powershell]]></category>

		<guid isPermaLink="false">http://www.opsmode.com/2011/02/putting-unixlinux-servers-in-mm-with-powershell/</guid>
		<description><![CDATA[I saw a question in the TechNet forum today on how to schedule Maintenance mode for Unix/Linux servers. After some testing this powershell script came out, put it in the task scheduler to automate it, or even better put it in the Opalis policy that is taking care of your maintenance.. $rmsServer=&#8221;RMS.fqdn&#8221; add-pssnapin &#8220;Microsoft.EnterpriseManagement.OperationsManager.Client&#8221;; Set-Location [...]<p>Post from: <a href="http://www.opsmode.com">www.opsmode.com</a></p>
]]></description>
			<content:encoded><![CDATA[<p>I saw a question in the TechNet forum today on how to schedule Maintenance mode for Unix/Linux servers.    <br />After some testing this powershell script came out, put it in the task scheduler to automate it, or even better put it in the Opalis policy that is taking care of your maintenance..</p>
<blockquote><p>$rmsServer=&#8221;<strong>RMS.fqdn</strong>&#8221;      <br />add-pssnapin &#8220;Microsoft.EnterpriseManagement.OperationsManager.Client&#8221;;      <br />Set-Location &#8220;OperationsManagerMonitoring::&#8221;;      <br />$mgConnection = New-ManagementGroupConnection -connectionString:$rmsServer;</p>
<p>Set-Location $rmsServer;     </p>
<p>$unixClass = get-monitoringclass -name &quot;Microsoft.Unix.Computer&quot;       <br />$monObject = Get-MonitoringObject -monitoringclass:$unixClass       <br />$mmServer = $monObject | where {$_.displayname -eq &quot;<strong>unixserver.fqdn</strong>&quot;}</p>
<p>New-MaintenanceWindow -MonitoringObject $mmServer -Comment &quot;Enter maintenance mode reason here&quot; -StartTime (Get-Date) -EndTime (Get-Date).AddMinutes(60)</p>
</blockquote>
<p>Post from: <a href="http://www.opsmode.com">www.opsmode.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.opsmode.com/2011/02/putting-unixlinux-servers-in-mm-with-powershell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Whats running on the agent&#8230;?</title>
		<link>http://www.opsmode.com/2010/12/whats-running-in-the-agent/</link>
		<comments>http://www.opsmode.com/2010/12/whats-running-in-the-agent/#comments</comments>
		<pubDate>Wed, 01 Dec 2010 10:18:45 +0000</pubDate>
		<dc:creator>mats</dc:creator>
				<category><![CDATA[Agent]]></category>
		<category><![CDATA[OpsMgr]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[tool]]></category>

		<guid isPermaLink="false">http://www.opsmode.com/2010/12/whats-running-in-the-agent/</guid>
		<description><![CDATA[Ever wanted to now what rules, monitors and discoveries is running on the OpsMgr agent? I sure did.. Now the answer is a great Powershell script written by Stefan Stranger. It is to be found here: http://blogs.technet.com/b/stefan_stranger/archive/2010/11/30/what-monitors-rules-and-discoveries-are-running-on-an-opsmgr-agent.aspx Post from: www.opsmode.com<p>Post from: <a href="http://www.opsmode.com">www.opsmode.com</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Ever wanted to now what rules, monitors and discoveries is running on the OpsMgr agent? I sure did.. </p>
<p>Now the answer is a great Powershell script written by Stefan Stranger.</p>
<p>It is to be found here:    <br /><a title="http://blogs.technet.com/b/stefan_stranger/archive/2010/11/30/what-monitors-rules-and-discoveries-are-running-on-an-opsmgr-agent.aspx" href="http://blogs.technet.com/b/stefan_stranger/archive/2010/11/30/what-monitors-rules-and-discoveries-are-running-on-an-opsmgr-agent.aspx">http://blogs.technet.com/b/stefan_stranger/archive/2010/11/30/what-monitors-rules-and-discoveries-are-running-on-an-opsmgr-agent.aspx</a></p>
<p>Post from: <a href="http://www.opsmode.com">www.opsmode.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.opsmode.com/2010/12/whats-running-in-the-agent/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Opalis 6.3 now RTM and downloadable</title>
		<link>http://www.opsmode.com/2010/11/opalis-6-3-now-rtm-and-downloadable/</link>
		<comments>http://www.opsmode.com/2010/11/opalis-6-3-now-rtm-and-downloadable/#comments</comments>
		<pubDate>Sat, 20 Nov 2010 15:53:05 +0000</pubDate>
		<dc:creator>mats</dc:creator>
				<category><![CDATA[Opalis]]></category>

		<guid isPermaLink="false">http://www.opsmode.com/2010/11/opalis-6-3-now-rtm-and-downloadable/</guid>
		<description><![CDATA[In case anybody missed it, Opalis 6.3 is now RTM and ready to be downloaded. Here is the download links from the Opalis website Download the free 180-day trial version of Opalis 6.3. Download the Opalis 6.3 Upgrade Package (for customers with qualifying SMSE and SMSD licenses only). Download the full Opalis 6.3 with 6.2.2 [...]<p>Post from: <a href="http://www.opsmode.com">www.opsmode.com</a></p>
]]></description>
			<content:encoded><![CDATA[<p>In case anybody missed it, Opalis 6.3 is now RTM and ready to be downloaded. Here is the download links from the <a href="http://www.microsoft.com/systemcenter/en/us/opalis.aspx" target="_blank">Opalis website</a>    <br /><a href="http://download.microsoft.com/download/D/F/C/DFC9F061-65A9-44C0-9012-450A7B8697CC/Opalis_180_Day_Evaluation.exe">Download the free 180-day trial version of Opalis 6.3.</a>    <br /><a href="http://download.microsoft.com/download/C/7/2/C72DEECE-36E1-488E-8712-6A99690B7FC7/Opalis63Upgrade.EXE">Download the Opalis 6.3 Upgrade Package (for customers with qualifying SMSE and SMSD licenses only).</a>    <br /><a href="http://download.microsoft.com/download/C/2/B/C2BBA2D3-C2D5-4733-9603-DA22BBCA2842/opalis_full.exe">Download the full Opalis 6.3 with 6.2.2 package (for customers with qualifying SMSE and SMSD licenses only).</a></p>
<p>Here is som release-interviews with the Engineering team <a title="http://blogs.technet.com/b/systemcenter/archive/2010/11/19/opalis-6-3-release-interviews-with-the-engineering-team.aspx" href="http://blogs.technet.com/b/systemcenter/archive/2010/11/19/opalis-6-3-release-interviews-with-the-engineering-team.aspx">http://blogs.technet.com/b/systemcenter/archive/2010/11/19/opalis-6-3-release-interviews-with-the-engineering-team.aspx</a></p>
<p>In the package are Integrations Packs for SCCM, DPM, OpsMgr, SCSM and SCVMM.</p>
<p>I&#8217;m really looking forward to start using this new version and IP&#8217;s!</p>
<p>Happy automating.. =)</p>
<p>Post from: <a href="http://www.opsmode.com">www.opsmode.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.opsmode.com/2010/11/opalis-6-3-now-rtm-and-downloadable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

