<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Pavleck.NET</title>
	<atom:link href="http://www.pavleck.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pavleck.net</link>
	<description>System Center, PowerShell, Windows and More</description>
	<lastBuildDate>Mon, 07 Jan 2013 08:26:28 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>Comment on Configuring SMS in OpsMgr by Alex C.</title>
		<link>http://www.pavleck.net/2009/04/configuring-sms-in-opsmgr/comment-page-1/#comment-1391</link>
		<dc:creator>Alex C.</dc:creator>
		<pubDate>Mon, 07 Jan 2013 08:26:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.pavleck.net/2009/04/configuring-sms-in-opsmgr/#comment-1391</guid>
		<description><![CDATA[I have found a software, Ozeki NG SMS Gateway. It is a perfect match for SCOM to send SMS messages.]]></description>
		<content:encoded><![CDATA[<p>I have found a software, Ozeki NG SMS Gateway. It is a perfect match for SCOM to send SMS messages.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Configuring SMS in OpsMgr by Alex C.</title>
		<link>http://www.pavleck.net/2009/04/configuring-sms-in-opsmgr/comment-page-1/#comment-1390</link>
		<dc:creator>Alex C.</dc:creator>
		<pubDate>Mon, 07 Jan 2013 08:24:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.pavleck.net/2009/04/configuring-sms-in-opsmgr/#comment-1390</guid>
		<description><![CDATA[Ive found a description on how to setup SMS sending from SCOM. sms-integration.com/what-is-the-best-way-to-send-sms-in-scom-2007-13.html
I hope you will find what u r looking for.]]></description>
		<content:encoded><![CDATA[<p>Ive found a description on how to setup SMS sending from SCOM. sms-integration.com/what-is-the-best-way-to-send-sms-in-scom-2007-13.html<br />
I hope you will find what u r looking for.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SCOM Snippet: The hidden nag mode by F1</title>
		<link>http://www.pavleck.net/2008/09/scom-snippet-the-hidden-nag-mode/comment-page-1/#comment-1363</link>
		<dc:creator>F1</dc:creator>
		<pubDate>Fri, 04 Jan 2013 18:05:09 +0000</pubDate>
		<guid isPermaLink="false">http://pavleck.net/?p=125#comment-1363</guid>
		<description><![CDATA[I actually had to change the &quot;-ge&quot; to &quot;-le&quot; today, seems the time statement was always true and was in the $alert array resetting each time my scheduled task fired (5 minutes).]]></description>
		<content:encoded><![CDATA[<p>I actually had to change the &#8220;-ge&#8221; to &#8220;-le&#8221; today, seems the time statement was always true and was in the $alert array resetting each time my scheduled task fired (5 minutes).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SCOM Snippet: The hidden nag mode by F1</title>
		<link>http://www.pavleck.net/2008/09/scom-snippet-the-hidden-nag-mode/comment-page-1/#comment-1353</link>
		<dc:creator>F1</dc:creator>
		<pubDate>Thu, 03 Jan 2013 16:56:49 +0000</pubDate>
		<guid isPermaLink="false">http://pavleck.net/?p=125#comment-1353</guid>
		<description><![CDATA[Thanks for the useful post!

I was able to get this to work and it filled a need for the low disk space MB.  Here is what my .ps1 script looks like that I run with the task scheduler: (run power shell in the task with the full path, then use the path\script for the parameter)

$rootMS=&quot;&quot;

Add-PSSnapin &quot;Microsoft.EnterpriseManagement.OperationsManager.Client&quot; -ErrorVariable errSnapin;
Set-Location &quot;OperationsManagerMonitoring::&quot; -ErrorVariable errSnapin;
new-managementGroupConnection -ConnectionString:$rootMS -ErrorVariable errSnapin;
set-location $rootMS -ErrorVariable errSnapin;

$oldAlerts = Get-Alert &#124; Where-Object {($_.LastModified -ge [DateTime]::Now.AddMinutes(-30)) -and ($_.ResolutionState -eq 0) -and ($_.Name -eq &quot;Logical Disk Free Space in MBytes is low&quot;)}
ForEach($alert in $oldAlerts) {
$alert.Update(&quot;&quot;)}]]></description>
		<content:encoded><![CDATA[<p>Thanks for the useful post!</p>
<p>I was able to get this to work and it filled a need for the low disk space MB.  Here is what my .ps1 script looks like that I run with the task scheduler: (run power shell in the task with the full path, then use the path\script for the parameter)</p>
<p>$rootMS=&#8221;"</p>
<p>Add-PSSnapin &#8220;Microsoft.EnterpriseManagement.OperationsManager.Client&#8221; -ErrorVariable errSnapin;<br />
Set-Location &#8220;OperationsManagerMonitoring::&#8221; -ErrorVariable errSnapin;<br />
new-managementGroupConnection -ConnectionString:$rootMS -ErrorVariable errSnapin;<br />
set-location $rootMS -ErrorVariable errSnapin;</p>
<p>$oldAlerts = Get-Alert | Where-Object {($_.LastModified -ge [DateTime]::Now.AddMinutes(-30)) -and ($_.ResolutionState -eq 0) -and ($_.Name -eq &#8220;Logical Disk Free Space in MBytes is low&#8221;)}<br />
ForEach($alert in $oldAlerts) {<br />
$alert.Update(&#8220;&#8221;)}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating an audible alert notification in SCOM by Igor Batoukhtine</title>
		<link>http://www.pavleck.net/2008/09/creating-an-audible-alert-in-scom/comment-page-1/#comment-789</link>
		<dc:creator>Igor Batoukhtine</dc:creator>
		<pubDate>Fri, 27 Jul 2012 10:44:25 +0000</pubDate>
		<guid isPermaLink="false">http://pavleck.net/?p=129#comment-789</guid>
		<description><![CDATA[Hello,

When I run the .PS1 file it comes with an error:

Connot convert value &quot;\myserver\root\cimv2:win32_process&quot; to type &quot;sytem.management.managementcalss&quot;. Error: &quot;the RPC server is unavailable. &quot; at C:\scripts\soundalarm.ps1:100 char:23

But the server is Up and I can ping it from the server.]]></description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>When I run the .PS1 file it comes with an error:</p>
<p>Connot convert value &#8220;\myserver\root\cimv2:win32_process&#8221; to type &#8220;sytem.management.managementcalss&#8221;. Error: &#8220;the RPC server is unavailable. &#8221; at C:\scripts\soundalarm.ps1:100 char:23</p>
<p>But the server is Up and I can ping it from the server.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Useful SCOM SQL Queries by SQL Queries for SCOM Dashboards &#124; Reuben Bruce &#8211; SCOM Blog</title>
		<link>http://www.pavleck.net/2008/06/useful-scom-sql-queries/comment-page-1/#comment-668</link>
		<dc:creator>SQL Queries for SCOM Dashboards &#124; Reuben Bruce &#8211; SCOM Blog</dc:creator>
		<pubDate>Thu, 08 Mar 2012 11:24:08 +0000</pubDate>
		<guid isPermaLink="false">http://pavleck.net/?p=35#comment-668</guid>
		<description><![CDATA[[...] http://www.pavleck.net/2008/06/useful-scom-sql-queries/ [...]]]></description>
		<content:encoded><![CDATA[<p>[...] <a href="http://www.pavleck.net/2008/06/useful-scom-sql-queries/" rel="nofollow">http://www.pavleck.net/2008/06/useful-scom-sql-queries/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Orchestrator Peg in the System Center Hole by Vlad</title>
		<link>http://www.pavleck.net/2012/01/the-orchestrator-peg-in-the-system-center-hole/comment-page-1/#comment-642</link>
		<dc:creator>Vlad</dc:creator>
		<pubDate>Mon, 06 Feb 2012 23:06:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.pavleck.net/?p=392#comment-642</guid>
		<description><![CDATA[That&#039;s a cute example, and a good one to demonstrate how Opalis technology can make everyone&#039;s lives easier. I say Opalis, because Orchestrator has the same DNA that&#039;s been around for a decade in Opalis Robot. As you mentioned, it&#039;s not tied to any specific suite or even vendor (even though it&#039;s now under MSC umbrella) and works well cross-platform to integrate even seemingly very distant IT silos. Wait until companies find out how much time and resources they can save with it. It&#039;s free for those that already have System Center license, it&#039;s easy to deploy and you can start with small/simple tasks and expand as you learn. Even if used as a glorified scheduler, Orchestrator will pay for itself in a matter of weeks.]]></description>
		<content:encoded><![CDATA[<p>That&#8217;s a cute example, and a good one to demonstrate how Opalis technology can make everyone&#8217;s lives easier. I say Opalis, because Orchestrator has the same DNA that&#8217;s been around for a decade in Opalis Robot. As you mentioned, it&#8217;s not tied to any specific suite or even vendor (even though it&#8217;s now under MSC umbrella) and works well cross-platform to integrate even seemingly very distant IT silos. Wait until companies find out how much time and resources they can save with it. It&#8217;s free for those that already have System Center license, it&#8217;s easy to deploy and you can start with small/simple tasks and expand as you learn. Even if used as a glorified scheduler, Orchestrator will pay for itself in a matter of weeks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Orchestrator Peg in the System Center Hole by Getting excited about System Center Orchestrator</title>
		<link>http://www.pavleck.net/2012/01/the-orchestrator-peg-in-the-system-center-hole/comment-page-1/#comment-641</link>
		<dc:creator>Getting excited about System Center Orchestrator</dc:creator>
		<pubDate>Mon, 06 Feb 2012 19:03:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.pavleck.net/?p=392#comment-641</guid>
		<description><![CDATA[[...] Check out Jeremy’s post, solution, and ideas:&#160; The Orchestrator Peg in the System Center Hole [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Check out Jeremy’s post, solution, and ideas:&#160; The Orchestrator Peg in the System Center Hole [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SP1 Gem: Finding rules running on remote agents by tony B</title>
		<link>http://www.pavleck.net/2008/06/sp1-gem-finding-rules-running-on-remote-agents/comment-page-1/#comment-638</link>
		<dc:creator>tony B</dc:creator>
		<pubDate>Thu, 02 Feb 2012 20:42:53 +0000</pubDate>
		<guid isPermaLink="false">http://pavleck.net/?p=38#comment-638</guid>
		<description><![CDATA[this is exactly what I have been looking for.
Awesome.....took me a while to find this but GLAD you posted it!!!!!!!!!!!!!


THANKs!!]]></description>
		<content:encoded><![CDATA[<p>this is exactly what I have been looking for.<br />
Awesome&#8230;..took me a while to find this but GLAD you posted it!!!!!!!!!!!!!</p>
<p>THANKs!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Orchestrator Peg in the System Center Hole by Peter Forster</title>
		<link>http://www.pavleck.net/2012/01/the-orchestrator-peg-in-the-system-center-hole/comment-page-1/#comment-637</link>
		<dc:creator>Peter Forster</dc:creator>
		<pubDate>Wed, 01 Feb 2012 18:16:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.pavleck.net/?p=392#comment-637</guid>
		<description><![CDATA[Hi - I&#039;m very interested in seeing your runbook :-) - sounds pretty cool!]]></description>
		<content:encoded><![CDATA[<p>Hi &#8211; I&#8217;m very interested in seeing your runbook <img src='http://www.pavleck.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  &#8211; sounds pretty cool!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
