<?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>TechColumnist &#187; SCOM</title>
	<atom:link href="http://www.techcolumnist.com/wp/tag/scom/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.techcolumnist.com/wp</link>
	<description>Storage Information Blog</description>
	<lastBuildDate>Fri, 16 Jul 2010 15:56:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Schedule a URL into Maintenance Mode</title>
		<link>http://www.techcolumnist.com/wp/2010/07/07/schedule-a-url-into-maintenance-mode/</link>
		<comments>http://www.techcolumnist.com/wp/2010/07/07/schedule-a-url-into-maintenance-mode/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 22:53:54 +0000</pubDate>
		<dc:creator>Tom Lasswell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[SCOM]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://www.techcolumnist.com/wp/?p=212</guid>
		<description><![CDATA[Found a nice article about how to script a URL (or web application) into maintenance mode. This was a little bit of a challenge to find so I'm reposting it to hopefully get some more attention. I've also posted the modified version of the script that allows for multiple watcher hosts. [powershell]param($rootMS,$urlName,$minutes,$comment,$reason) Add-PSSnapin "Microsoft.EnterpriseManagement.OperationsManager.Client" -ErrorVariable [...]]]></description>
			<content:encoded><![CDATA[<p>Found a nice article about how to script a URL (or web application) into maintenance mode. This was a little bit of a challenge to find so I'm reposting it to hopefully get some more attention. I've also posted the modified version of the script that allows for multiple watcher hosts.</p>
<p>[powershell]param($rootMS,$urlName,$minutes,$comment,$reason)<br />
Add-PSSnapin "Microsoft.EnterpriseManagement.OperationsManager.Client" -ErrorVariable errSnapin;</p>
<p>Set-Location "OperationsManagerMonitoring::" -ErrorVariable errSnapin;<br />
new-managementGroupConnection -ConnectionString:$rootMS -ErrorVariable errSnapin;<br />
set-location $rootMS -ErrorVariable errSnapin;</p>
<p>$URLWatcher = (Get-MonitoringClass -name Microsoft.SystemCenter.WebApplication.Perspective) | Get-MonitoringObject | where {$_.DisplayName -eq $urlName}</p>
<p>$startTime = [System.DateTime]::Now<br />
$endTime = $startTime.AddMinutes($minutes)</p>
<p>"Putting URL into maintenance mode"<br />
foreach ($name in $URLWatcher) {<br />
New-MaintenanceWindow -startTime:$startTime -endTime:$endTime -monitoringObject:$name -comment:$comment -Reason:$reason }[/powershell]</p>
<h3><strong>Usage:</strong></h3>
<p>[bash]C:\WINDOWS\system32\WindowsPowerShell\v1.0\powershell.exe URLMaintenanceModeV4.ps1 -rootMS: `SCOMRMS1′ -urlName: ‘MSN Website Checker’ -minutes:45 -comment: ‘My Comment’ -reason: ‘PlannedOther’[/bash]</p>
<p><a href="http://www.scom2k7.com/schedule-a-into-url-maintenance-mode/">http://www.scom2k7.com/schedule-a-into-url-maintenance-mode/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.techcolumnist.com/wp/2010/07/07/schedule-a-url-into-maintenance-mode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpsMgr 2007 &#8211; No graphs in emailed reports</title>
		<link>http://www.techcolumnist.com/wp/2010/04/01/opsmgr-2007-no-graphs-in-emailed-reports-2/</link>
		<comments>http://www.techcolumnist.com/wp/2010/04/01/opsmgr-2007-no-graphs-in-emailed-reports-2/#comments</comments>
		<pubDate>Fri, 02 Apr 2010 00:50:10 +0000</pubDate>
		<dc:creator>Tom Lasswell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[opsmgr]]></category>
		<category><![CDATA[SCOM]]></category>

		<guid isPermaLink="false">http://www.techcolumnist.com/wp/2010/04/01/opsmgr-2007-no-graphs-in-emailed-reports-2/</guid>
		<description><![CDATA[Some of you may have found that there are no graphs in your emails (scheduled reports) from SCOM 2007. I posted this up on the MSMOM email distro and Kevin Holman pointed me to a KB article. http://support.microsoft.com/kb/972821 Just add this to your ReportingServicesService.exe.config file in the \ReportServer\bin [bash] [/bash] Place this between the tags: [...]]]></description>
			<content:encoded><![CDATA[<p>Some of you may have found that there are no graphs in your emails (scheduled reports) from SCOM 2007. I posted this up on the MSMOM email distro and Kevin Holman pointed me to a KB article.</p>
<p><a href="http://support.microsoft.com/kb/972821">http://support.microsoft.com/kb/972821</a></p>
<p>Just add this to your ReportingServicesService.exe.config file in the \ReportServer\bin</p>
<p>[bash]<dependentAssembly><br />
<assemblyIdentity name="Microsoft.ReportingServices.ProcessingCore"publicKeyToken="89845dcd8080cc91" culture="neutral" /><br />
<bindingRedirect oldVersion="9.0.242.0" newVersion="10.0.0.0" /><br />
</dependentAssembly></p>
<p><dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1"><br />
<assemblyIdentity name="Microsoft.ReportingServices.ProcessingCore"publicKeyToken="89845dcd8080cc91" culture="neutral" /><br />
<bindingRedirect oldVersion="9.0.242.0" newVersion="10.0.0.0" /><br />
</dependentAssembly>[/bash]</p>
<p>Place this between the tags:</p>
<p>[bash]<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"><br />
</assemblyBinding>[/bash]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techcolumnist.com/wp/2010/04/01/opsmgr-2007-no-graphs-in-emailed-reports-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpsMgr 2007 &#8211; Author Privileges</title>
		<link>http://www.techcolumnist.com/wp/2010/01/04/opsmgr-2007-author-privileges/</link>
		<comments>http://www.techcolumnist.com/wp/2010/01/04/opsmgr-2007-author-privileges/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 00:32:15 +0000</pubDate>
		<dc:creator>Tom Lasswell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[SCOM]]></category>

		<guid isPermaLink="false">http://www.techcolumnist.com/wp/?p=197</guid>
		<description><![CDATA[Have you run into setting up permissions/privileges for your administrators within the scom console. This can be quite confusion. You often run into cryptic areas where certain functions don't react as they should and you run into the error "The user domain\user does not have sufficient permission to perform the operation". Some important information here: [...]]]></description>
			<content:encoded><![CDATA[<p>Have you run into setting up permissions/privileges for your administrators within the scom console. This can be quite confusion. You often run into cryptic areas where certain functions don't react as they should and you run into the error "The user domain\user does not have sufficient permission to perform the operation".</p>
<p>Some important information here:</p>
<p><span id="more-197"></span><strong>Reset Health Permission</strong></p>
<p>Goto your user role area for your author group. The "tasks" tab is where you need to add "Flush Health Service State and Cache" task.</p>
<p><strong>Allow viewing the 'overrides' under 'authoring'</strong></p>
<p>You need to allow access to all "views". You can still lock down which machines they view by the "group scope", and "author scope" locks down which targets (or rules/monitors/etc) they can modify).</p>
<p>*I haven't found a way to lock down the views yet. If you know, please let me know!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techcolumnist.com/wp/2010/01/04/opsmgr-2007-author-privileges/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Greyed out Domain Controllers</title>
		<link>http://www.techcolumnist.com/wp/2009/09/30/greyed-out-domain-controllers/</link>
		<comments>http://www.techcolumnist.com/wp/2009/09/30/greyed-out-domain-controllers/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 01:14:42 +0000</pubDate>
		<dc:creator>Tom Lasswell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[SCOM]]></category>

		<guid isPermaLink="false">http://www.techcolumnist.com/wp/?p=186</guid>
		<description><![CDATA[I spent a while searching around for this gem. Basically the domain controllers don't trust the local system account so you have to run the HSLockdown.exe tool. I found this blog article that explains: http://scug.be/blogs/scom/archive/2008/08/18/opsmgr-agent-greyed-out-on-domain-controller.aspx]]></description>
			<content:encoded><![CDATA[<p>I spent a while searching around for this gem. Basically the domain controllers don't trust the local system account so you have to run the HSLockdown.exe tool. I found this blog article that explains:</p>
<p>http://scug.be/blogs/scom/archive/2008/08/18/opsmgr-agent-greyed-out-on-domain-controller.aspx</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techcolumnist.com/wp/2009/09/30/greyed-out-domain-controllers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
