<?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>BlackOps</title>
	<atom:link href="http://www.blackops.ca/cms/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.blackops.ca/cms/blog</link>
	<description>Consider it taken care of.</description>
	<lastBuildDate>Sun, 04 Dec 2011 22:49:17 +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>Report on SIDHistory</title>
		<link>http://www.blackops.ca/cms/blog/?p=258</link>
		<comments>http://www.blackops.ca/cms/blog/?p=258#comments</comments>
		<pubDate>Sun, 04 Dec 2011 22:49:17 +0000</pubDate>
		<dc:creator>Scott Garrett</dc:creator>
				<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://www.blackops.ca/cms/blog/?p=258</guid>
		<description><![CDATA[This script will use PowerShell to check your domain for any users or groups that have a SID history, and will report the SID History, current SID and username to c:\UserSid.csv You can use the current domain or specify something specific. &#160; cls $strFilter = "(&#38;(&#124;(objectCategory=User)(objectCategory=Group))(sidHistory=*))" $objDomain = New-Object System.DirectoryServices.DirectoryEntry $objSearcher = New-Object System.DirectoryServices.DirectorySearcher $objSearcher.SearchRoot = [...]]]></description>
		<wfw:commentRss>http://www.blackops.ca/cms/blog/?feed=rss2&#038;p=258</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>List all the groups a user is a member of &#8230; Thank-You PowerShell</title>
		<link>http://www.blackops.ca/cms/blog/?p=251</link>
		<comments>http://www.blackops.ca/cms/blog/?p=251#comments</comments>
		<pubDate>Sat, 26 Nov 2011 04:23:25 +0000</pubDate>
		<dc:creator>Scott Garrett</dc:creator>
				<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://www.blackops.ca/cms/blog/?p=251</guid>
		<description><![CDATA[Let me start by saying that if you still cling to vbscript (as I did for so long) I have to say come to the dark side we have cookies. Seriously things are so much better once you get it figured out. For whatever reason I started working with arrays in this script and learned [...]]]></description>
		<wfw:commentRss>http://www.blackops.ca/cms/blog/?feed=rss2&#038;p=251</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>File System Audit and the WABAC machine &#8211; Now with set-acl</title>
		<link>http://www.blackops.ca/cms/blog/?p=231</link>
		<comments>http://www.blackops.ca/cms/blog/?p=231#comments</comments>
		<pubDate>Tue, 15 Nov 2011 03:50:47 +0000</pubDate>
		<dc:creator>Scott Garrett</dc:creator>
				<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://www.blackops.ca/cms/blog/?p=231</guid>
		<description><![CDATA[&#8216;Twas a long time ago, longer now than it seems In a place that perhaps you&#8217;ve seen in your dreams. For the story that you are about to be told Began with the technicians of old. A very long time ago, as a junior tech I got a seemingly simple request.  &#8220;Tell me what user X has [...]]]></description>
		<wfw:commentRss>http://www.blackops.ca/cms/blog/?feed=rss2&#038;p=231</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Powershell &#8211; Rename Local Admin Account OR Ecuritysay Oughthray Obscurityway</title>
		<link>http://www.blackops.ca/cms/blog/?p=221</link>
		<comments>http://www.blackops.ca/cms/blog/?p=221#comments</comments>
		<pubDate>Thu, 25 Aug 2011 20:01:17 +0000</pubDate>
		<dc:creator>Scott Garrett</dc:creator>
				<category><![CDATA[Batch and Script]]></category>
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://www.blackops.ca/cms/blog/?p=221</guid>
		<description><![CDATA[This PowerShell script looks for the local Administrator account (as a member of the local Administrators group) and renames it. Then it creates a bogus local administrator account with a 32 character password that next expires and is not a member of any groups. Likely this will only catch your local admins who have not [...]]]></description>
		<wfw:commentRss>http://www.blackops.ca/cms/blog/?feed=rss2&#038;p=221</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Powershell &#8211; Add users to local groups OR Sounds like a job for group policies</title>
		<link>http://www.blackops.ca/cms/blog/?p=215</link>
		<comments>http://www.blackops.ca/cms/blog/?p=215#comments</comments>
		<pubDate>Tue, 23 Aug 2011 21:18:55 +0000</pubDate>
		<dc:creator>Scott Garrett</dc:creator>
				<category><![CDATA[Batch and Script]]></category>
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://www.blackops.ca/cms/blog/?p=215</guid>
		<description><![CDATA[Today I needed to add a couple of AD users to the local administrators group on a number of servers&#8230;.. and I am not allowed to use a GPO to do it. Not wanting to manually connect to every machine I used the following powershell script cls $InputServers = Import-Csv &#8220;c:\servers.csv&#8221; $InputUsers = Import-Csv &#8220;c:\users.csv&#8221; [...]]]></description>
		<wfw:commentRss>http://www.blackops.ca/cms/blog/?feed=rss2&#038;p=215</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A SQL Function : Split or Reinventing the wheel</title>
		<link>http://www.blackops.ca/cms/blog/?p=201</link>
		<comments>http://www.blackops.ca/cms/blog/?p=201#comments</comments>
		<pubDate>Thu, 28 Jul 2011 15:02:36 +0000</pubDate>
		<dc:creator>Scott Garrett</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.blackops.ca/cms/blog/?p=201</guid>
		<description><![CDATA[It has been far too long since my last post. Lately I have been working on some operational tasks that include a log of data gathering. I am using powershell and sql for this and thus the next few posts are likely to move in this direction. One of the first few things I found [...]]]></description>
		<wfw:commentRss>http://www.blackops.ca/cms/blog/?feed=rss2&#038;p=201</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>This e-mail address already exists in this organization OR How to find a needle in AD</title>
		<link>http://www.blackops.ca/cms/blog/?p=186</link>
		<comments>http://www.blackops.ca/cms/blog/?p=186#comments</comments>
		<pubDate>Tue, 24 Aug 2010 15:11:02 +0000</pubDate>
		<dc:creator>Scott Garrett</dc:creator>
				<category><![CDATA[AD]]></category>
		<category><![CDATA[Exchange]]></category>

		<guid isPermaLink="false">http://www.blackops.ca/cms/blog/?p=186</guid>
		<description><![CDATA[Problem : You go to create an email address and get the error &#8220;This e-mail address already exists in this organization&#8221; so you search and find http://support.microsoft.com/kb/280765 and it does not help at all. The Solution : Active Directory Users and Computers utility Right click on the domain, choose Find.  In the Find dropdown list, choose [...]]]></description>
		<wfw:commentRss>http://www.blackops.ca/cms/blog/?feed=rss2&#038;p=186</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SCOM, SNMP and TRAPS or The Good, the Bad and the Ugly : Part 2</title>
		<link>http://www.blackops.ca/cms/blog/?p=53</link>
		<comments>http://www.blackops.ca/cms/blog/?p=53#comments</comments>
		<pubDate>Tue, 23 Feb 2010 23:36:58 +0000</pubDate>
		<dc:creator>Steve Gowan</dc:creator>
				<category><![CDATA[SCOM 2007 R2]]></category>
		<category><![CDATA[SNMP]]></category>

		<guid isPermaLink="false">http://www.blackops.ca/cms/blog/?p=53</guid>
		<description><![CDATA[If you have made your way through Part 1 then you have written your management pack complete with your own custom discovery and imported it into SCOM.  Once you have ensured that it is discovering only the devices you wish to manage in this pack it is time to begin writing the monitors and rules [...]]]></description>
		<wfw:commentRss>http://www.blackops.ca/cms/blog/?feed=rss2&#038;p=53</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SCOM 2007 R2 Automatic Alert Closing or Death by Brackets</title>
		<link>http://www.blackops.ca/cms/blog/?p=155</link>
		<comments>http://www.blackops.ca/cms/blog/?p=155#comments</comments>
		<pubDate>Sun, 07 Feb 2010 23:39:37 +0000</pubDate>
		<dc:creator>Scott Garrett</dc:creator>
				<category><![CDATA[SCOM 2007 R2]]></category>
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://www.blackops.ca/cms/blog/?p=155</guid>
		<description><![CDATA[Issue: You have informational alerts, or any other alerts in the SCOM console that you want to have, but not stack up forever. Solution: Power shell, again I am far from a power shell expert, in fact this might be the first script I have created that is more than just calling an existing command-let. [...]]]></description>
		<wfw:commentRss>http://www.blackops.ca/cms/blog/?feed=rss2&#038;p=155</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SCOM 2007 R2 Console Command Line</title>
		<link>http://www.blackops.ca/cms/blog/?p=149</link>
		<comments>http://www.blackops.ca/cms/blog/?p=149#comments</comments>
		<pubDate>Sat, 30 Jan 2010 16:11:54 +0000</pubDate>
		<dc:creator>Scott Garrett</dc:creator>
				<category><![CDATA[SCOM 2007 R2]]></category>

		<guid isPermaLink="false">http://www.blackops.ca/cms/blog/?p=149</guid>
		<description><![CDATA[Microsoft.MOM.UI.Console.Exe Typically installed in C:\Program Files\System Center Operations Manager 2007 Microsoft.MOM.UI.Console.Exe /? Command Line Syntax: Microsoft.MOM.UI.Console.Exe {/Option[:Value]} Option Description /? Shows this help window /ClearCache Clear the UI cache (this is the one that made me look for this) /Server:&#60;ServerName&#62; Connect to the specified server /ViewName:&#60;ViewName&#62; Display a view /TaskName:&#60;TaskName&#62; Run a task /TaskTarget:&#60;ObjectId&#62; Use [...]]]></description>
		<wfw:commentRss>http://www.blackops.ca/cms/blog/?feed=rss2&#038;p=149</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

