<?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</title>
	<atom:link href="http://www.techcolumnist.com/wp/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>ISY Python Script for controlling media lights via xbmc</title>
		<link>http://www.techcolumnist.com/wp/2010/07/16/isy-python-script-for-controlling-media-lights-via-xbmc/</link>
		<comments>http://www.techcolumnist.com/wp/2010/07/16/isy-python-script-for-controlling-media-lights-via-xbmc/#comments</comments>
		<pubDate>Fri, 16 Jul 2010 15:55:36 +0000</pubDate>
		<dc:creator>Tom Lasswell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[isy]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[xbmc]]></category>

		<guid isPermaLink="false">http://www.techcolumnist.com/wp/?p=245</guid>
		<description><![CDATA[Here is a simple python script to use the REST code in the ISY (http://universal-devices.com) to control devices that are linked. I'm designing this script to be used inside a script for xbmc. here's the first part of it. I recommend using scenes for the devicedim, deviceoff, and deviceon array, however you can use the [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a simple python script to use the REST code in the ISY (http://universal-devices.com) to control devices that are linked. I'm designing this script to be used inside a script for xbmc. here's the first part of it. I recommend using scenes for the devicedim, deviceoff, and deviceon array, however you can use the individual devices as well in the array.</p>
<p>[python]</p>
<p>import urllib2<br />
import urllib<br />
import sys</p>
<p>devicedim = ['41941']<br />
deviceoff = ['48839']<br />
deviceon = ['62270']<br />
username = 'admin'<br />
password = 'admin'</p>
<p>topurl = 'http://isy'<br />
passman = urllib2.HTTPPasswordMgrWithDefaultRealm()<br />
passman.add_password(None, topurl, username, password)<br />
authhandler = urllib2.HTTPBasicAuthHandler(passman)<br />
opener = urllib2.build_opener(authhandler)<br />
urllib2.install_opener(opener)</p>
<p>if sys.argv[1] == 'playing':<br />
	for devicex in deviceoff:<br />
		theurl = 'http://isy/rest/nodes/' + devicex + '/cmd/DOF'<br />
		#normalize the URL<br />
		theurl = urllib.quote(theurl, safe="%/:=&#038;?~#+!$,;'@()*[]")<br />
		print (theurl)<br />
		pagehandle = urllib2.urlopen(theurl)<br />
	for devicex in devicedim:<br />
		theurl = 'http://isy/rest/nodes/' + devicex + '/cmd/DON/64'<br />
		#normalize the URL<br />
		theurl = urllib.quote(theurl, safe="%/:=&#038;?~#+!$,;'@()*[]")<br />
		print (theurl)<br />
		pagehandle = urllib2.urlopen(theurl)<br />
elif sys.argv[1] == 'stopped':<br />
	for devicex in deviceon:<br />
		print (devicex)<br />
		theurl = 'http://isy/rest/nodes/' + devicex + '/cmd/DON'<br />
		#normalize the URL<br />
		theurl = urllib.quote(theurl, safe="%/:=&#038;?~#+!$,;'@()*[]")<br />
		print (theurl)<br />
		pagehandle = urllib2.urlopen(theurl)<br />
else:<br />
	print 'no state given'<br />
[/python]</p>
<p>Usage: [plain]isy-medialights.py playing|stopped[/plain]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techcolumnist.com/wp/2010/07/16/isy-python-script-for-controlling-media-lights-via-xbmc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>First iphone 4 post</title>
		<link>http://www.techcolumnist.com/wp/2010/07/04/first-iphone-4-post/</link>
		<comments>http://www.techcolumnist.com/wp/2010/07/04/first-iphone-4-post/#comments</comments>
		<pubDate>Sun, 04 Jul 2010 17:12:14 +0000</pubDate>
		<dc:creator>Tom Lasswell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[phone]]></category>

		<guid isPermaLink="false">http://www.techcolumnist.com/wp/2010/07/04/first-iphone-4-post/</guid>
		<description><![CDATA[Testing out the new phone. Been a while since the last post. Looks pretty neat to be able to write a post while mobile.]]></description>
			<content:encoded><![CDATA[<p>Testing out the new phone. Been a while since the last post. Looks pretty neat to be able to write a post while mobile. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.techcolumnist.com/wp/2010/07/04/first-iphone-4-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Designing Disaster Recovery &#8230; on a budget</title>
		<link>http://www.techcolumnist.com/wp/2010/04/06/designing-disaster-recovery-on-a-budget/</link>
		<comments>http://www.techcolumnist.com/wp/2010/04/06/designing-disaster-recovery-on-a-budget/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 22:39:40 +0000</pubDate>
		<dc:creator>Tom Lasswell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[san]]></category>

		<guid isPermaLink="false">http://www.techcolumnist.com/wp/2010/04/06/designing-disaster-recovery-on-a-budget/</guid>
		<description><![CDATA[This article is still under construction. There are several options for disaster recovery and high availability. There's host based solutions, array based solutions, and virtualization solutions. Which to pick? We're going through a pretty crazy test of products, but we have the same problem as everyone else, we have tons of different storage vendors. So [...]]]></description>
			<content:encoded><![CDATA[<div>
<p><em>This article is still under construction.</em></p>
<p>There are several options for disaster recovery and high availability. There's host based solutions, array based solutions, and virtualization solutions. Which to pick? We're going through a pretty crazy test of products, but we have the same problem as everyone else, we have tons of different storage vendors. So do you pick host based replication solutions, probably not. Do you pick array based solutions, sure, those will work. What about adding another layer of complexity to the solution and add an in-band virtualization solution? Or implement something like EMC RecoverPoint and only worry about replication with one thing, and keep array based solutions for specific tasks? So many things to choose from.</p>
<p><img title="More..." src="http://www.techcolumnist.com/wp/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.techcolumnist.com/wp/2010/04/06/designing-disaster-recovery-on-a-budget/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>NetApp OnTap 8.0rc2 Filerview</title>
		<link>http://www.techcolumnist.com/wp/2010/01/03/netapp-ontap-8-0rc2-filerview/</link>
		<comments>http://www.techcolumnist.com/wp/2010/01/03/netapp-ontap-8-0rc2-filerview/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 05:33:32 +0000</pubDate>
		<dc:creator>Tom Lasswell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[netapp]]></category>

		<guid isPermaLink="false">http://www.techcolumnist.com/wp/?p=192</guid>
		<description><![CDATA[Take a look at filerview. Not much different here except the branding. I'll post some other screenies as I go along and explore the new version.]]></description>
			<content:encoded><![CDATA[<p>Take a look at filerview. Not much different here except the branding. I'll post some other screenies as I go along and explore the new version.</p>
<p><a href="http://www.techcolumnist.com/wp/wp-content/uploads/2010/01/filerview-8.0rc2.jpg"><img src="http://www.techcolumnist.com/wp/wp-content/uploads/2010/01/filerview-8.0rc2-300x163.jpg" alt="filerview-8.0rc2" title="filerview-8.0rc2" width="300" height="163" class="alignnone size-medium wp-image-193" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.techcolumnist.com/wp/2010/01/03/netapp-ontap-8-0rc2-filerview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remotely reboot a server</title>
		<link>http://www.techcolumnist.com/wp/2009/10/26/remotely-reboot-a-server/</link>
		<comments>http://www.techcolumnist.com/wp/2009/10/26/remotely-reboot-a-server/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 22:00:14 +0000</pubDate>
		<dc:creator>Tom Lasswell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.techcolumnist.com/wp/?p=190</guid>
		<description><![CDATA[Always a good tidbit of information to keep around: To perform a remote shutdown: 1. Open Computer Management (Local) 2. In the console tree, right-click Computer Management (Local), and then click Connect to another computer. 3. In the Select Computer dialog box, click Another computer, type the name of the computer that you want to [...]]]></description>
			<content:encoded><![CDATA[<p>Always a good tidbit of information to keep around:</p>
<p><strong>To perform a remote shutdown:</strong><br />
1. Open Computer Management (Local)<br />
2. In the console tree, right-click Computer Management (Local), and then click Connect to another computer.<br />
3. In the Select Computer dialog box, click Another computer, type the name of the computer that you want to restart or shut down, and then click OK. You can also click Browse to search for the name of the computer.<br />
4. In the console tree, right-click Computer Management (Remote computer name), and then click Properties.<br />
5. On the Advanced tab, click Startup and Recovery.<br />
6. Click Shut Down to open the Shut Down dialog box.<br />
7. Under Action, select the actions you want to perform on the computer to which you are connected.<br />
8. Under Force Apps Closed, select the circumstances under which you want to force applications to close when you shut down or restart the computer, and then click OK.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techcolumnist.com/wp/2009/10/26/remotely-reboot-a-server/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>
		<item>
		<title>NetApp DS4243 Disk Shelves</title>
		<link>http://www.techcolumnist.com/wp/2009/09/18/netapp-ds4243-disk-shelves/</link>
		<comments>http://www.techcolumnist.com/wp/2009/09/18/netapp-ds4243-disk-shelves/#comments</comments>
		<pubDate>Fri, 18 Sep 2009 17:29:34 +0000</pubDate>
		<dc:creator>Tom Lasswell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[netapp]]></category>

		<guid isPermaLink="false">http://www.techcolumnist.com/wp/?p=180</guid>
		<description><![CDATA[Finally SAS disk shelves from NetApp. Also in a 24 drive configuration. Update: Looks like these will ship with new systems only starting December (and by new systems, it seems maybe only the FAS-3170s). General availability will come a few months later.]]></description>
			<content:encoded><![CDATA[<p>Finally SAS disk shelves from NetApp. Also in a 24 drive configuration.</p>
<p>Update: Looks like these will ship with new systems only starting December (and by new systems, it seems maybe only the FAS-3170s). General availability will come a few months later. </p>
<div class="wp-caption alignnone" style="width: 35px"><img src="http://media.netapp.com/images/csequoi-faceonpsrgbclipped-flat-1.jpg" alt="DS4243" width="500"/><p class="wp-caption-text">DS4243</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.techcolumnist.com/wp/2009/09/18/netapp-ds4243-disk-shelves/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
