<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Brady&#039;s Contentious Blog</title>
	<atom:link href="http://eaglebcr.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://eaglebcr.wordpress.com</link>
	<description>Daily findings albeit business or pleasure.</description>
	<lastBuildDate>Mon, 12 Dec 2011 17:59:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='eaglebcr.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/4ecbf09a94137e9767cc284c6f7ee05e?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Brady&#039;s Contentious Blog</title>
		<link>http://eaglebcr.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://eaglebcr.wordpress.com/osd.xml" title="Brady&#039;s Contentious Blog" />
	<atom:link rel='hub' href='http://eaglebcr.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Create Shares on Remote Servers</title>
		<link>http://eaglebcr.wordpress.com/2011/12/12/create-shares-on-remote-servers/</link>
		<comments>http://eaglebcr.wordpress.com/2011/12/12/create-shares-on-remote-servers/#comments</comments>
		<pubDate>Mon, 12 Dec 2011 17:56:50 +0000</pubDate>
		<dc:creator>eaglebcr</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[Server 2008]]></category>
		<category><![CDATA[WMI]]></category>
		<category><![CDATA[Servers]]></category>

		<guid isPermaLink="false">https://eaglebcr.wordpress.com/?p=195</guid>
		<description><![CDATA[Here is a script that will connect to a list of servers, create a folder structure and then create a share on a folder.&#160; ########################################################################### # # NAME: Create Share on Remote Servers # # AUTHOR:&#160; Brady Randolph # # COMMENT: # # VERSION HISTORY: # 1.0 12/8/2011 &#8211; Initial release # ########################################################################### ##&#160;&#160;&#160; Gather [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eaglebcr.wordpress.com&amp;blog=9655884&amp;post=195&amp;subd=eaglebcr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="left">Here is a script that will connect to a list of servers, create a folder structure and then create a share on a folder.&#160; </p>
<p align="left">###########################################################################   <br />#    <br /># NAME: Create Share on Remote Servers    <br />#    <br /># AUTHOR:&#160; Brady Randolph    <br />#    <br /># COMMENT:     <br />#    <br /># VERSION HISTORY:    <br /># 1.0 12/8/2011 &#8211; Initial release    <br />#    <br />###########################################################################    <br />##&#160;&#160;&#160; Gather list of server names    <br />$utlservrs = Get-Content c:\admin\utl_servers.txt</p>
<p align="left">##&#160;&#160;&#160; Loop through each server   <br />foreach ($s in $utlservrs) {    <br />&#160;&#160;&#160; <br />&#160;&#160;&#160; ##&#160;&#160;&#160; Create folder structure    <br />&#160;&#160;&#160; if (Test-Path -Path &quot;\\$s\d$\admin&quot;) { &quot;Admin folder exists&quot;    <br />&#160;&#160;&#160; New-Item -ItemType directory &quot;\\$s\d$\admin\DAGFileShareWitness&quot;    <br />&#160;&#160;&#160; }    <br />&#160;&#160;&#160; else {&quot;Admin folder doesn&#8217;t exist&quot;    <br />&#160;&#160;&#160; New-Item -ItemType directory &quot;\\$s\d$\admin\&quot;    <br />&#160;&#160;&#160; New-Item -ItemType directory &quot;\\$s\d$\admin\DAGFileShareWitness&quot;    <br />&#160;&#160;&#160; }    <br />##&#160;&#160;&#160; Create folder share&#160;&#160;&#160; <br />&quot;Creating Share&quot;&#160;&#160;&#160; <br />$cshare = [WMIClass]&quot;\\$s\root\cimv2:Win32_Share&quot;    <br />$result = $cshare.create(&quot;D:\admin\DAGFileShareWitness&quot;,&quot;DAGFileShareWitness&quot;,0,25,&quot;DAG File Share Witness&quot;)    <br />&quot;Return Result: $result.ReturnValue&quot;</p>
<p align="left">&quot;Adding Exchange Trusted Subsystem group to local admins&quot;   <br />&#160;&#160;&#160; $Domain = &#8216;mydomain.corp&#8217;    <br />&#160;&#160;&#160; $ADGroup = &#8216;Exchange Trusted Subsystem&#8217;    <br />&#160;&#160;&#160; ([ADSI]&quot;WinNT://$s/Administrators,group&quot;).add(&quot;WinNT://$Domain/$ADGroup,group&quot;)    <br />}</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eaglebcr.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eaglebcr.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eaglebcr.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eaglebcr.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eaglebcr.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eaglebcr.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eaglebcr.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eaglebcr.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eaglebcr.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eaglebcr.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eaglebcr.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eaglebcr.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eaglebcr.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eaglebcr.wordpress.com/195/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eaglebcr.wordpress.com&amp;blog=9655884&amp;post=195&amp;subd=eaglebcr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eaglebcr.wordpress.com/2011/12/12/create-shares-on-remote-servers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/02f48021aac07b75ddc26fb956ede60b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">eaglebcr</media:title>
		</media:content>
	</item>
		<item>
		<title>Token Bloating</title>
		<link>http://eaglebcr.wordpress.com/2011/10/05/token-bloating/</link>
		<comments>http://eaglebcr.wordpress.com/2011/10/05/token-bloating/#comments</comments>
		<pubDate>Wed, 05 Oct 2011 14:08:07 +0000</pubDate>
		<dc:creator>eaglebcr</dc:creator>
				<category><![CDATA[AD]]></category>
		<category><![CDATA[Token Bloating]]></category>

		<guid isPermaLink="false">https://eaglebcr.wordpress.com/2011/10/05/token-bloating/</guid>
		<description><![CDATA[Here is an article that explains what token bloating is and how to avoid it within your AD environment.&#160; What this article doesn’t explain is the equation to calculate your token size and that is SIZE = 1200 + 40d + 8s where d = domain local groups and s = global and universal groups. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eaglebcr.wordpress.com&amp;blog=9655884&amp;post=194&amp;subd=eaglebcr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here is an article that explains what token bloating is and how to avoid it within your AD environment.&#160; What this article doesn’t explain is the equation to calculate your token size and that is <strong>SIZE</strong> = 1200 + 40d + 8s where d = domain local groups and s = global and universal groups. </p>
<p><a title="http://www.itadmintools.com/2011/09/avoiding-token-bloat-in-your-active.html" href="http://www.itadmintools.com/2011/09/avoiding-token-bloat-in-your-active.html">http://www.itadmintools.com/2011/09/avoiding-token-bloat-in-your-active.html</a></p>
<p>If your environment is already experiencing this issue, here is an article that explains how to increase your token size within AD.</p>
<p><a title="http://support.microsoft.com/kb/327825" href="http://support.microsoft.com/kb/327825">http://support.microsoft.com/kb/327825</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eaglebcr.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eaglebcr.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eaglebcr.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eaglebcr.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eaglebcr.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eaglebcr.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eaglebcr.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eaglebcr.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eaglebcr.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eaglebcr.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eaglebcr.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eaglebcr.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eaglebcr.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eaglebcr.wordpress.com/194/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eaglebcr.wordpress.com&amp;blog=9655884&amp;post=194&amp;subd=eaglebcr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eaglebcr.wordpress.com/2011/10/05/token-bloating/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/02f48021aac07b75ddc26fb956ede60b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">eaglebcr</media:title>
		</media:content>
	</item>
		<item>
		<title>Collect Page File Server Configurations</title>
		<link>http://eaglebcr.wordpress.com/2011/09/29/collect-page-file-server-configurations/</link>
		<comments>http://eaglebcr.wordpress.com/2011/09/29/collect-page-file-server-configurations/#comments</comments>
		<pubDate>Thu, 29 Sep 2011 14:11:34 +0000</pubDate>
		<dc:creator>eaglebcr</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[AD]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[Server 2008]]></category>
		<category><![CDATA[WMI]]></category>
		<category><![CDATA[Page File]]></category>

		<guid isPermaLink="false">https://eaglebcr.wordpress.com/2011/09/29/collect-page-file-server-configurations/</guid>
		<description><![CDATA[A client asked me to write a script to gather the page file configurations for ever server in their domain.&#160; At first thought, I was like this will be a piece of cake.&#160; I can use Win32_PageFile WMI class but the class has been deprecated. At second glance, not that difficult just some understanding of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eaglebcr.wordpress.com&amp;blog=9655884&amp;post=192&amp;subd=eaglebcr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="left">A client asked me to write a script to gather the page file configurations for ever server in their domain.&#160; At first thought, I was like this will be a piece of cake.&#160; I can use Win32_PageFile WMI class but the class has been deprecated. At second glance, not that difficult just some understanding of the differences between each OS (2008 R2 and 2000) and which WMI classes to use.&#160; </p>
<p align="left">First let’s start with server 2008.&#160; There is the default configuration to “Automatically manage paging file size for all drives.”&#160; This is not available in server 2003 or 2000 and can be found in Win32_ComputerSystem under AutomaticManagedPagefile.&#160; If this is set to true, paging is automatically managed by the OS and the WMI class Win32_PageFileSetting is never created within the OS.&#160; </p>
<p align="left"><a href="http://eaglebcr.files.wordpress.com/2011/09/image.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;margin:0;" title="image" border="0" alt="image" src="http://eaglebcr.files.wordpress.com/2011/09/image_thumb.png?w=244&#038;h=102" width="244" height="102" /></a></p>
<p align="left">If it is set to false, you can query Win32_PageFileSetting and gather information from that class which includes initial and max page file sizes.</p>
<p align="left">On server 2003, “Automatically manage page file sizes for all drives” isn’t an option so Win32_PageFileSetting is always available.&#160; </p>
<p align="left">Here are a few links to articles I used:</p>
<p align="left"><a title="http://www.planetmps.com/Essentials/Properties/CIMV2/ms_409/Win32/Win32_ComputerSystem.html" href="http://www.planetmps.com/Essentials/Properties/CIMV2/ms_409/Win32/Win32_ComputerSystem.html">http://www.planetmps.com/Essentials/Properties/CIMV2/ms_409/Win32/Win32_ComputerSystem.html</a></p>
<p align="left"><a title="http://msdn.microsoft.com/en-us/library/aa394245(v=VS.85).aspx" href="http://msdn.microsoft.com/en-us/library/aa394245(v=VS.85).aspx">http://msdn.microsoft.com/en-us/library/aa394245(v=VS.85).aspx</a></p>
<p align="left"><a title="http://msdn.microsoft.com/en-us/library/aa394246(v=VS.85).aspx" href="http://msdn.microsoft.com/en-us/library/aa394246(v=VS.85).aspx">http://msdn.microsoft.com/en-us/library/aa394246(v=VS.85).aspx</a></p>
<p align="left"><a title="http://msdn.microsoft.com/en-us/library/aa394243(v=VS.85).aspx" href="http://msdn.microsoft.com/en-us/library/aa394243(v=VS.85).aspx">http://msdn.microsoft.com/en-us/library/aa394243(v=VS.85).aspx</a></p>
<p align="left">The script queries AD and loops through a list of servers and exports data to an Excel document.</p>
<p align="left">##################################################################################    <br />##&#160;&#160;&#160; This script is used to query every server for their page file configs&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />##&#160;&#160;&#160; 1. Connect to the domain using ADSI&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />##&#160; 2. Opens Excel, Add a workbook and deletes default workbooks 2 and 3&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />##&#160; 3. Builds Array of Values to display in header&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />##&#160; 4. Creates Excel Header&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />##&#160;&#160;&#160; 5. Loop through each server&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />##&#160;&#160;&#160; 6. Collect data on each server&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />##&#160; 7. Exports array to Excel&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />##&#160; 8. Autofit Excel columns&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />##&#160; 9. Get Time and Date&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />##&#160; 10. Save Workbook&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />##&#160;&#160;&#160; Script written by Brady Randolph of RBA Consulting 9/29/2011&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />##################################################################################</p>
<p align="left">##&#160; 1. Connect to the domain using ADSI     <br />$objDomain = [adsi] (“LDAP://OU=Servers,OU=Company,dc=domain,dc=corp”)     <br />$objSearcher = New-Object System.DirectoryServices.DirectorySearcher     <br />$objSearcher.SearchRoot = $objDomain     <br />$objSearcher.PageSize = 1000     <br />$objSearcher.Filter = ‘(objectClass=Computer)’     <br />$colResults = $objSearcher.FindAll()</p>
<p align="left">##&#160; 2. Opens Excel, Add a workbook and deletes default workbooks 2 and 3    <br />&#160;&#160;&#160; $excel = new-object -comobject excel.application     <br />&#160;&#160;&#160; $excel.visible = $true     <br />&#160;&#160;&#160; $workbook = $excel.workbooks.add()     <br />&#160;&#160;&#160; $workbook.WorkSheets.item(3).delete()     <br />&#160;&#160;&#160; $workbook.WorkSheets.item(2).delete()     <br />&#160;&#160;&#160; #Names the worksheet     <br />&#160;&#160;&#160; $workbook.WorkSheets.item(1).Name = &quot;Servers&quot;     <br />&#160;&#160;&#160; $sheet = $workbook.WorkSheets.Item(&quot;Servers&quot;) </p>
<p align="left">&#160;&#160;&#160; $lineStyle = &quot;microsoft.office.interop.excel.xlLineStyle&quot; -as [type]    <br />&#160;&#160;&#160; $colorIndex = &quot;microsoft.office.interop.excel.xlColorIndex&quot; -as [type]     <br />&#160;&#160;&#160; $borderWeight = &quot;microsoft.office.interop.excel.xlBorderWeight&quot; -as [type]     <br />&#160;&#160;&#160; $chartType = &quot;microsoft.office.interop.excel.xlChartType&quot; -as [type]     <br />&#160;&#160;&#160; <br />&#160;&#160;&#160; ##&#160; 3. Builds Array of Values to display in header     <br />&#160;&#160;&#160; $Borders = @(&quot;Server&quot;,&quot;Pagefile Location&quot;,&quot;Automanaged&quot;,&quot;Pagefile Size&quot;,&quot;RAM Size&quot;,&quot;PF Initial Size&quot;,&quot;PF Max Size&quot;,&quot;System Drive Free Space&quot;,&quot;Data Drive Free Space&quot;)     <br />&#160;&#160;&#160; $b = 1     <br />&#160;&#160;&#160; <br />&#160;&#160;&#160; ##&#160; 4. Creates Excel Header     <br />&#160;&#160;&#160; Foreach ($item in $Borders) {     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; $sheet.cells.item(1,$b).interior.ColorIndex = 1     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; $sheet.cells.item(1,$b).font.bold = $true     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; $sheet.cells.item(1,$b).font.colorindex = 2     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; $sheet.cells.item(1,$b).borders.LineStyle = $lineStyle::xlContinuous     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; $sheet.cells.item(1,$b).borders.ColorIndex = $colorIndex::xlColorIndexAutomatic     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; #$sheet.cells.item(1,$b).borders.Weight = $borderWeight::xlMedium     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; $sheet.cells.item(1,$b) = $item     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; $b = $b + 1     <br />&#160;&#160;&#160; }     <br />&#160;&#160;&#160; $x = 2     <br />&#160;&#160;&#160; <br />##&#160;&#160;&#160; 5. Loop through each server     <br />foreach ($i in $colResults){     <br />&#160;&#160;&#160; # Set variables to null     <br />&#160;&#160;&#160; $Server = $null;$PageFileLocation = $null;$SystemManaged = $null;$PageFileSize = $null;$physicalmem = $null;$SysDriveFreeSpace = $null;$DDriveFreeSpace = $null;     <br />&#160;&#160;&#160; $PFInitial = $null;$PFMax = $null;     <br />&#160;&#160;&#160; # Set server name to a string     <br />&#160;&#160;&#160; [string]$server = $i.properties.name     <br />&#160;&#160;&#160; $OS_Ver = $i.Properties.operatingsystem     <br />&#160;&#160;&#160; If (($OS_Ver -like &quot;*server*&quot;) -and (Test-Connection -ComputerName $server -Count &#8217;2&#8242;)){     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; $os = get-wmiobject Win32_OperatingSystem -ComputerName $server     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; # Verify if server is 2008 R2 because AutomaticManagedPagefile isn&#8217;t an property 2000 and 2003     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if ($os.Version -like &quot;6.1*&quot;)&#160; {     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $SystemManaged&#160; = Get-WmiObject -ComputerName $server -Class Win32_ComputerSystem | % {$_.AutomaticManagedPagefile}     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; if ($SystemManaged -eq &quot;True&quot;){     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; ##&#160; 6. Collect data on each server     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $physicalmem = gwmi -computer $server Win32_ComputerSystem | % {[Math]::round($_.TotalPhysicalMemory/1MB,0)}     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; #$SystemManaged&#160; = Get-WmiObject -ComputerName $server -Class Win32_ComputerSystem | % {$_.AutomaticManagedPagefile}     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $PF = gwmi -computer $server Win32_PageFileUsage     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $PageFileLocation = $PF.Name; $PageFileSize = $PF.AllocatedBaseSize     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $LogicalDrives = Get-WmiObject Win32_logicaldisk -ComputerName $server -Filter &quot;DriveType=&#8217;3&#8242;&quot;     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Foreach ($drive in $LogicalDrives) {     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; If ($drive.DeviceID -eq &#8216;c:&#8217;){$SysDriveFreeSpace = [Math]::round($drive.FreeSpace / 1GB,0)}     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; elseif ($drive.DeviceID -eq &#8216;d:&#8217;){$DDriveFreeSpace = [Math]::round($drive.FreeSpace / 1GB,0)}     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; elseif ($drive.DeviceID -eq &#8216;s:&#8217;){$SysDriveFreeSpace = [Math]::round($drive.FreeSpace / 1GB,0)}     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; elseif ($drive.DeviceID -eq &#8216;t:&#8217;){$DDriveFreeSpace = [Math]::round($drive.FreeSpace / 1GB,0)}     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $values = @($Server,$PageFileLocation,$SystemManaged,$PageFileSize,$physicalmem,$PFInitial,$PFMax,$SysDriveFreeSpace,$DDriveFreeSpace)     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $y = 1     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; ##&#160; 7. Exports array to Excel     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; foreach ($val in $values) {     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; #Add Values to row x and column y     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $sheet.cells.item($x,$y) = $val     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; #increase column by 1     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $y = $y + 1}     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; else{     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; ##&#160; 6. Collect data on each server     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $physicalmem = gwmi -computer $server Win32_ComputerSystem | % {[Math]::round($_.TotalPhysicalMemory/1MB,0)}     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; #$SystemManaged&#160; = Get-WmiObject -ComputerName $server -Class Win32_ComputerSystem | % {$_.AutomaticManagedPagefile}     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $PF = gwmi -computer $server Win32_PageFileUsage     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $PageFileLocation = $PF.Name; $PageFileSize = $PF.AllocatedBaseSize     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $LogicalDrives = Get-WmiObject Win32_logicaldisk -ComputerName $server -Filter &quot;DriveType=&#8217;3&#8242;&quot;     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Foreach ($drive in $LogicalDrives) {     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; If ($drive.DeviceID -eq &#8216;c:&#8217;){$SysDriveFreeSpace = [Math]::round($drive.FreeSpace / 1GB,0)}     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; elseif ($drive.DeviceID -eq &#8216;d:&#8217;){$DDriveFreeSpace = [Math]::round($drive.FreeSpace / 1GB,0)}     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; elseif ($drive.DeviceID -eq &#8216;s:&#8217;){$SysDriveFreeSpace = [Math]::round($drive.FreeSpace / 1GB,0)}     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; elseif ($drive.DeviceID -eq &#8216;t:&#8217;){$DDriveFreeSpace = [Math]::round($drive.FreeSpace / 1GB,0)}     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $PageFileSetting = Get-WmiObject Win32_PageFileSetting -ComputerName $server     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $PFInitial = $PageFileSetting.InitialSize; $PFMax = $PageFileSetting.MaximumSize     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $values = @($Server,$PageFileLocation,$SystemManaged,$PageFileSize,$physicalmem,$PFInitial,$PFMax,$SysDriveFreeSpace,$DDriveFreeSpace)     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $y = 1&#160;&#160;&#160; <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; ##&#160; 7. Exports array to Excel     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; foreach ($val in $values) {     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; #Add Values to row x and column y     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $sheet.cells.item($x,$y) = $val     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; #increase column by 1     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $y = $y + 1}     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $x = $x + 1     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; }     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Else{     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; ##&#160; 6. Collect data on each server     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $physicalmem = gwmi -computer $server Win32_ComputerSystem | % {[Math]::round($_.TotalPhysicalMemory/1MB,0)}     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; #$SystemManaged&#160; = Get-WmiObject -ComputerName $server -Class Win32_ComputerSystem | % {$_.AutomaticManagedPagefile}     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $PF = gwmi -computer $server Win32_PageFileUsage     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $PageFileLocation = $PF.Name; $PageFileSize = $PF.AllocatedBaseSize     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $LogicalDrives = Get-WmiObject Win32_logicaldisk -ComputerName $server -Filter &quot;DriveType=&#8217;3&#8242;&quot;     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Foreach ($drive in $LogicalDrives) {     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; If ($drive.DeviceID -eq &#8216;c:&#8217;){$SysDriveFreeSpace = [Math]::round($drive.FreeSpace / 1GB,0)}     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; elseif ($drive.DeviceID -eq &#8216;d:&#8217;){$DDriveFreeSpace = [Math]::round($drive.FreeSpace / 1GB,0)}     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; elseif ($drive.DeviceID -eq &#8216;s:&#8217;){$SysDriveFreeSpace = [Math]::round($drive.FreeSpace / 1GB,0)}     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; elseif ($drive.DeviceID -eq &#8216;t:&#8217;){$DDriveFreeSpace = [Math]::round($drive.FreeSpace / 1GB,0)}     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $PageFileSetting = Get-WmiObject Win32_PageFileSetting -ComputerName $server     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $PFInitial = $PageFileSetting.InitialSize; $PFMax = $PageFileSetting.MaximumSize     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $values = @($Server,$PageFileLocation,$SystemManaged,$PageFileSize,$physicalmem,$PFInitial,$PFMax,$SysDriveFreeSpace,$DDriveFreeSpace)     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $y = 1&#160;&#160;&#160; <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; ##&#160; 7. Exports array to Excel     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; foreach ($val in $values) {     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; #Add Values to row x and column y     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $sheet.cells.item($x,$y) = $val     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; #increase column by 1     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $y = $y + 1}     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $x = $x + 1     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }     <br />&#160;&#160;&#160; }     <br />}     <br />## 8.&#160; Autofit Excel columns     <br />$range = $sheet.usedRange     <br />$range.EntireColumn.AutoFit() | out-null</p>
<p align="left">##&#160; 9. Get Time and Date    <br />$date = Get-Date -Format &quot;yyyyMMd&quot;     <br />$time = Get-Date -Format &quot;HHms&quot;</p>
<p align="left">##&#160; 10. Save Workbook    <br />$strPath = &quot;c:\temp\ServerPageFiles-$date-$time.xls&quot;     <br />$excel.ActiveWorkbook.SaveAs($strPath)     <br />$excel.quit()     <br />spps -n excel</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eaglebcr.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eaglebcr.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eaglebcr.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eaglebcr.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eaglebcr.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eaglebcr.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eaglebcr.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eaglebcr.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eaglebcr.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eaglebcr.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eaglebcr.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eaglebcr.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eaglebcr.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eaglebcr.wordpress.com/192/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eaglebcr.wordpress.com&amp;blog=9655884&amp;post=192&amp;subd=eaglebcr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eaglebcr.wordpress.com/2011/09/29/collect-page-file-server-configurations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/02f48021aac07b75ddc26fb956ede60b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">eaglebcr</media:title>
		</media:content>

		<media:content url="http://eaglebcr.files.wordpress.com/2011/09/image_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Add Domain Groups to Server Administrators Local Group</title>
		<link>http://eaglebcr.wordpress.com/2011/09/27/add-domain-groups-to-server-administrators-local-group/</link>
		<comments>http://eaglebcr.wordpress.com/2011/09/27/add-domain-groups-to-server-administrators-local-group/#comments</comments>
		<pubDate>Tue, 27 Sep 2011 20:08:44 +0000</pubDate>
		<dc:creator>eaglebcr</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[AD]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[Server 2008]]></category>
		<category><![CDATA[Servers]]></category>

		<guid isPermaLink="false">https://eaglebcr.wordpress.com/2011/09/27/add-domain-groups-to-server-administrators-local-group/</guid>
		<description><![CDATA[A client of mine wanted to implement AGDLP, Microsoft’s security framework for granting users and groups rights to servers.&#160; This meant I needed to create a domain local group for each server and add that group to the local administrators group.&#160; This script takes a list of servers, creates a domain local group and adds [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eaglebcr.wordpress.com&amp;blog=9655884&amp;post=184&amp;subd=eaglebcr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="left">A client of mine wanted to implement AGDLP, Microsoft’s security framework for granting users and groups rights to servers.&#160; This meant I needed to create a domain local group for each server and add that group to the local administrators group.&#160; This script takes a list of servers, creates a domain local group and adds the group to the server local admins.</p>
<p align="left">##################################################################################   <br />##&#160;&#160;&#160; This script will create a domain local group and add the group to a servers&#160;&#160;&#160; <br />##&#160;&#160;&#160; local administrators group&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />##&#160;&#160;&#160; 1. Set Variables&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />##&#160; 2. Gather list of servers&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />##&#160; 3. Connect to OU&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />##&#160; 4. Loop through each server&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />##&#160; 5. Create group name&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />##&#160; 6. Create group&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />##&#160; 7. Create sAMAccountName&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />##&#160; 8. Set Description&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />##&#160; 9. Set group security descriptor&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />##&#160; 10. Complete group addition&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />##&#160; 11. Add group to server local administrators group&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />##&#160;&#160;&#160; Script written by Brady Randolph of RBA Consulting 9/27/2011&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />##################################################################################</p>
<p align="left">## 1. Set your variables   <br />$DLSecDescriptor = &#8216;-2147483644&#8242;    <br />$Domain = &#8216;Domain.corp&#8217;    <br />$objOU = &#8216;LDAP://OU=Domain Local,OU=Security,OU=Groups,OU=Company,DC=domain,DC=corp&#8217;</p>
<p align="left">## 2. Gather list of servers   <br />$List = Get-Content -Path c:\temp\servers.txt</p>
<p align="left">## 3. Connect to OU   <br />$objDomain = New-Object System.DirectoryServices.DirectoryEntry $objOU</p>
<p align="left">if ($List -ne &quot;&quot;) {   <br />&#160;&#160;&#160; <br />&#160;&#160;&#160; ## 4. Loop through each server    <br />&#160;&#160;&#160; foreach ($Comp in $List) {    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; ## 5. Create group name    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; $DomainLocalGroup = &quot;DL_&quot; + $Comp + &quot;_Local_Admins&quot;    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; ## 6. Create group    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; $objGroup = $objDomain.Create(&quot;group&quot;,&quot;CN=&quot; + $DomainLocalGroup)    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; ## 7. Create sAMAccountName    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; $objGroup.Put(&quot;sAMAccountName&quot;, $DomainLocalGroup)    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; ## 8. Set Description    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; $objGroup.Put(&quot;Description&quot;,&quot;Nested in Local Administrators on $Comp&quot;)    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; ## 9. Set group security descriptor    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; $objGroup.Put(&quot;groupType&quot;, $DLSecDescriptor )    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; ## 10. Complete group addition    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; $objGroup.SetInfo()    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; ## 11. Add group to server local administrators group    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; ([ADSI]&quot;WinNT://$Comp/Administrators,group&quot;).add(&quot;WinNT://$Domain/$DomainLocalGroup,group&quot;)     <br />&#160;&#160;&#160; }    <br />}</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eaglebcr.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eaglebcr.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eaglebcr.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eaglebcr.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eaglebcr.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eaglebcr.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eaglebcr.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eaglebcr.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eaglebcr.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eaglebcr.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eaglebcr.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eaglebcr.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eaglebcr.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eaglebcr.wordpress.com/184/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eaglebcr.wordpress.com&amp;blog=9655884&amp;post=184&amp;subd=eaglebcr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eaglebcr.wordpress.com/2011/09/27/add-domain-groups-to-server-administrators-local-group/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/02f48021aac07b75ddc26fb956ede60b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">eaglebcr</media:title>
		</media:content>
	</item>
		<item>
		<title>Gather Members of Administrators group on Servers in Active Directory</title>
		<link>http://eaglebcr.wordpress.com/2011/09/27/gather-members-of-administrators-group-on-servers-in-active-directory/</link>
		<comments>http://eaglebcr.wordpress.com/2011/09/27/gather-members-of-administrators-group-on-servers-in-active-directory/#comments</comments>
		<pubDate>Tue, 27 Sep 2011 19:46:07 +0000</pubDate>
		<dc:creator>eaglebcr</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[WMI]]></category>
		<category><![CDATA[AD]]></category>
		<category><![CDATA[Servers]]></category>

		<guid isPermaLink="false">https://eaglebcr.wordpress.com/2011/09/27/gather-members-of-administrators-group-on-servers-in-active-directory/</guid>
		<description><![CDATA[########################################################## ##&#160;&#160;&#160; This script is used to query every servers &#34;local administrators&#34; members ##&#160;&#160;&#160; 1. Set Variables&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; ##&#160; 2. Query all servers within Active Directory&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; ##&#160; 3. Loop through each server&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; ##&#160; 4. Gather every member of the Administrators group&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; ##&#160;&#160;&#160; 5. Add those values to an array&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; ##&#160;&#160;&#160; 6. Export array to a CSV&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eaglebcr.wordpress.com&amp;blog=9655884&amp;post=182&amp;subd=eaglebcr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="left">##########################################################   <br />##&#160;&#160;&#160; This script is used to query every servers &quot;local administrators&quot; members    <br />##&#160;&#160;&#160; 1. Set Variables&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />##&#160; 2. Query all servers within Active Directory&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />##&#160; 3. Loop through each server&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />##&#160; 4. Gather every member of the Administrators group&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />##&#160;&#160;&#160; 5. Add those values to an array&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />##&#160;&#160;&#160; 6. Export array to a CSV&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />##&#160;&#160;&#160; Script written by Brady Randolph of RBA Consulting 9/27/2011&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />##########################################################</p>
<p align="left">#1. Set Variables   <br />$output = &#8216;c:\temp\ServersLocalAdmins.csv&#8217;    <br />## Sets Global Variable for $Now to eliminate repeatable Get-Date queries    <br />$Global:Now = Set-PSBreakpoint -Variable Now -Mode Read -Action {Set-Variable Now (Get-Date) -Option ReadOnly, AllScope -Scope Global -Force}</p>
<p align="left">#2. Connect to the domain using ADSI   <br />$objDomain = [adsi] (&quot;LDAP://OU=Servers,dc=domain,dc=corp&quot;)    <br />$objSearcher = New-Object System.DirectoryServices.DirectorySearcher    <br />$objSearcher.SearchRoot = $objDomain    <br />$objSearcher.PageSize = 1000    <br />$objSearcher.Filter = ‘(objectClass=Computer)’    <br />$colResults = $objSearcher.FindAll()    <br /># Creates an empty array    <br />$results = @()</p>
<p align="left">#3. Loop through each server   <br />foreach ($Computer in $colResults) {    <br />&#160;&#160;&#160; [string]$CompName = $Computer.Properties.name    <br />&#160;&#160;&#160; #$CompName = $Computer    <br />&#160;&#160;&#160; $OS_Ver = $Computer.Properties.operatingsystem    <br />&#160;&#160;&#160; #$OS_Ver = Get-WmiObject -ComputerName $CompName -Class Win32_OperatingSystem | Select-Object {$_.caption}    <br />&#160;&#160;&#160; #Setting Members to null so values aren&#8217;t carried over to next computer    <br />&#160;&#160;&#160; $members = $null    <br />&#160;&#160;&#160; If ($OS_Ver -like &quot;*server*&quot;){     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; If (Test-Connection -ComputerName $CompName -Count &#8217;2&#8242;){    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Out-Host -InputObject &quot;$Now $CompName is Online&quot;    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $group =[ADSI]&quot;WinNT://$CompName/Administrators&quot;     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; #4. Gather every member of the Administrators group    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; $members = $group.Members() | foreach {$_.GetType().InvokeMember(&quot;Name&quot;, &#8216;GetProperty&#8217;, $null, $_, $null) }     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; #$localmembers | foreach {$_.GetType().InvokeMember(&quot;AdsPath&quot;,&quot;GetProperty&quot;,$null,$_,$null)}     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; #5. Add those values to an array    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; $results += New-Object PsObject -Property @{    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Server = $CompName    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Members = $members -join &quot;;&quot;}    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }    <br />&#160;&#160;&#160; <br />&#160;&#160;&#160;&#160;&#160; Else { Write-Host &quot;$Now $CompName is Offline&quot;}    <br />&#160;&#160;&#160; }    <br />}    <br />#6. Export array to a CSV    <br />$results | Export-Csv $Output -NoTypeInformation    </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eaglebcr.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eaglebcr.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eaglebcr.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eaglebcr.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eaglebcr.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eaglebcr.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eaglebcr.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eaglebcr.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eaglebcr.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eaglebcr.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eaglebcr.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eaglebcr.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eaglebcr.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eaglebcr.wordpress.com/182/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eaglebcr.wordpress.com&amp;blog=9655884&amp;post=182&amp;subd=eaglebcr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eaglebcr.wordpress.com/2011/09/27/gather-members-of-administrators-group-on-servers-in-active-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/02f48021aac07b75ddc26fb956ede60b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">eaglebcr</media:title>
		</media:content>
	</item>
		<item>
		<title>Displaying Balloon Tip using PoSH</title>
		<link>http://eaglebcr.wordpress.com/2011/09/27/displaying-balloon-tip-using-posh/</link>
		<comments>http://eaglebcr.wordpress.com/2011/09/27/displaying-balloon-tip-using-posh/#comments</comments>
		<pubDate>Tue, 27 Sep 2011 16:33:55 +0000</pubDate>
		<dc:creator>eaglebcr</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Powershell]]></category>

		<guid isPermaLink="false">https://eaglebcr.wordpress.com/2011/09/27/displaying-balloon-tip-using-posh/</guid>
		<description><![CDATA[Let&#8217;s assume your script wants to share status information via a balloon message in the system tray area. Here is a sample: [system.Reflection.Assembly]::LoadWithPartialName(&#8216;System.Windows.Forms&#8217;) &#124; Out-Null $balloon = New-Object System.Windows.Forms.NotifyIcon $path = Get-Process -id $pid &#124; Select-Object -ExpandProperty Path $icon = [System.Drawing.Icon]::ExtractAssociatedIcon($path) $balloon.Icon = $icon $balloon.BalloonTipIcon = &#8216;Info&#8217; $balloon.BalloonTipText = &#8216;Completed Operation&#8217; $balloon.BalloonTipTitle = &#8216;Done&#8217; $balloon.Visible [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eaglebcr.wordpress.com&amp;blog=9655884&amp;post=181&amp;subd=eaglebcr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="left">Let&#8217;s assume your script wants to share status information via a balloon message in the system tray area. Here is a sample:</p>
<p align="left">[system.Reflection.Assembly]::LoadWithPartialName(&#8216;System.Windows.Forms&#8217;) | Out-Null</p>
<p align="left">$balloon = New-Object System.Windows.Forms.NotifyIcon</p>
<p align="left">$path = Get-Process -id $pid | Select-Object -ExpandProperty Path</p>
<p align="left">$icon = [System.Drawing.Icon]::ExtractAssociatedIcon($path)</p>
<p align="left">$balloon.Icon = $icon</p>
<p align="left">$balloon.BalloonTipIcon = &#8216;Info&#8217;</p>
<p align="left">$balloon.BalloonTipText = &#8216;Completed Operation&#8217;</p>
<p align="left">$balloon.BalloonTipTitle = &#8216;Done&#8217;</p>
<p align="left">$balloon.Visible = $true</p>
<p align="left">$balloon.ShowBalloonTip(10000)</p>
<p align="left">&#160;</p>
<p align="left">Note that the code uses the icon of your PowerShell application inside the tray area so the user can associate the message with the application that produced it.</p>
<p align="left">I received this code from PowerShell.com’s PowerTip of the Day.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eaglebcr.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eaglebcr.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eaglebcr.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eaglebcr.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eaglebcr.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eaglebcr.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eaglebcr.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eaglebcr.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eaglebcr.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eaglebcr.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eaglebcr.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eaglebcr.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eaglebcr.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eaglebcr.wordpress.com/181/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eaglebcr.wordpress.com&amp;blog=9655884&amp;post=181&amp;subd=eaglebcr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eaglebcr.wordpress.com/2011/09/27/displaying-balloon-tip-using-posh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/02f48021aac07b75ddc26fb956ede60b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">eaglebcr</media:title>
		</media:content>
	</item>
		<item>
		<title>Calculate IOPS</title>
		<link>http://eaglebcr.wordpress.com/2011/09/22/calculate-iops/</link>
		<comments>http://eaglebcr.wordpress.com/2011/09/22/calculate-iops/#comments</comments>
		<pubDate>Thu, 22 Sep 2011 19:52:23 +0000</pubDate>
		<dc:creator>eaglebcr</dc:creator>
				<category><![CDATA[SAN]]></category>
		<category><![CDATA[IOPS]]></category>

		<guid isPermaLink="false">https://eaglebcr.wordpress.com/2011/09/22/calculate-iops/</guid>
		<description><![CDATA[Here is a good article explaining how to calculate IOPS for a single disk or arrays. http://www.techrepublic.com/blog/datacenter/calculate-iops-in-a-storage-array/2182<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eaglebcr.wordpress.com&amp;blog=9655884&amp;post=180&amp;subd=eaglebcr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here is a good article explaining how to calculate IOPS for a single disk or arrays.</p>
<p><a title="http://www.techrepublic.com/blog/datacenter/calculate-iops-in-a-storage-array/2182" href="http://www.techrepublic.com/blog/datacenter/calculate-iops-in-a-storage-array/2182">http://www.techrepublic.com/blog/datacenter/calculate-iops-in-a-storage-array/2182</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eaglebcr.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eaglebcr.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eaglebcr.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eaglebcr.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eaglebcr.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eaglebcr.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eaglebcr.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eaglebcr.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eaglebcr.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eaglebcr.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eaglebcr.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eaglebcr.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eaglebcr.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eaglebcr.wordpress.com/180/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eaglebcr.wordpress.com&amp;blog=9655884&amp;post=180&amp;subd=eaglebcr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eaglebcr.wordpress.com/2011/09/22/calculate-iops/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/02f48021aac07b75ddc26fb956ede60b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">eaglebcr</media:title>
		</media:content>
	</item>
		<item>
		<title>Clean your TEMP folder</title>
		<link>http://eaglebcr.wordpress.com/2011/09/21/clean-your-temp-folder/</link>
		<comments>http://eaglebcr.wordpress.com/2011/09/21/clean-your-temp-folder/#comments</comments>
		<pubDate>Wed, 21 Sep 2011 14:24:49 +0000</pubDate>
		<dc:creator>eaglebcr</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Server 2008]]></category>
		<category><![CDATA[Servers]]></category>

		<guid isPermaLink="false">https://eaglebcr.wordpress.com/2011/09/21/clean-your-temp-folder/</guid>
		<description><![CDATA[When disk space gets low, you may want to clean up your temporary folder. The code deletes all files that are older than 30 days to make sure you&#8217;re not dumping anything that&#8217;s still needed: $cutoff = (Get-Date) &#8211; (New-TimeSpan -Days 30) &#160; $before = (Get-ChildItem $env:temp &#124; Measure-Object Length -Sum).Sum &#160; Get-ChildItem $env:temp &#124;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eaglebcr.wordpress.com&amp;blog=9655884&amp;post=178&amp;subd=eaglebcr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="left">When disk space gets low, you may want to clean up your temporary folder. The code deletes all files that are older than 30 days to make sure you&#8217;re not dumping anything that&#8217;s still needed:</p>
<p align="left">$cutoff = (Get-Date) &#8211; (New-TimeSpan -Days 30)</p>
<p align="left">&#160;</p>
<p align="left">$before = (Get-ChildItem $env:temp | Measure-Object Length -Sum).Sum</p>
<p align="left">&#160;</p>
<p align="left">Get-ChildItem $env:temp |&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; </p>
<p align="left">&#160; Where-Object { $_.Length -ne $null } |&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; </p>
<p align="left">&#160; Where-Object { $_.LastWriteTime -lt $cutoff } |&#160;&#160;&#160; </p>
<p align="left">&#160; Remove-Item -Force -ErrorAction SilentlyContinue -WhatIf&#160; # REMOVE -whatif to ENABLE DELETING!</p>
<p align="left">&#160;</p>
<p align="left">$after = (Get-ChildItem $env:temp | Measure-Object Length -Sum).Sum</p>
<p align="left">&#160;</p>
<p align="left">&#8216;Freed {0:0.00} MB disk space&#8217; -f (($before-$after)/1MB)</p>
<p align="left">&#160;</p>
<p align="left">Since deleting stuff is always risky, we left a -WhatIf in the code so you can check that you are actually deleting your temp folder and not anything else (due to a typo for example). Once you are comfortable, remove –WhatIf to invoke the cleanup process. You may be surprised how much garbage can be removed.</p>
<p align="left">Thanks to PowerShell.com for providing this script.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eaglebcr.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eaglebcr.wordpress.com/178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eaglebcr.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eaglebcr.wordpress.com/178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eaglebcr.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eaglebcr.wordpress.com/178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eaglebcr.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eaglebcr.wordpress.com/178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eaglebcr.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eaglebcr.wordpress.com/178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eaglebcr.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eaglebcr.wordpress.com/178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eaglebcr.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eaglebcr.wordpress.com/178/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eaglebcr.wordpress.com&amp;blog=9655884&amp;post=178&amp;subd=eaglebcr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eaglebcr.wordpress.com/2011/09/21/clean-your-temp-folder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/02f48021aac07b75ddc26fb956ede60b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">eaglebcr</media:title>
		</media:content>
	</item>
		<item>
		<title>Resync NTP time to local DC</title>
		<link>http://eaglebcr.wordpress.com/2011/09/16/resync-ntp-time-to-local-dc/</link>
		<comments>http://eaglebcr.wordpress.com/2011/09/16/resync-ntp-time-to-local-dc/#comments</comments>
		<pubDate>Fri, 16 Sep 2011 15:00:52 +0000</pubDate>
		<dc:creator>eaglebcr</dc:creator>
				<category><![CDATA[NTP]]></category>
		<category><![CDATA[AD]]></category>

		<guid isPermaLink="false">https://eaglebcr.wordpress.com/2011/09/16/resync-ntp-time-to-local-dc/</guid>
		<description><![CDATA[A client of mine was having an issue because originally within their server build, they were hard coding the NTP server into the registry.&#160; Well that NTP server has now gone away and they wanted to use Active Directories model of using the DC within their site configuration to pull the time from.&#160; Here is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eaglebcr.wordpress.com&amp;blog=9655884&amp;post=177&amp;subd=eaglebcr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A client of mine was having an issue because originally within their server build, they were hard coding the NTP server into the registry.&#160; Well that NTP server has now gone away and they wanted to use Active Directories model of using the DC within their site configuration to pull the time from.&#160; Here is a script I used to stop w32time service, reregister w32tm, start w32time service and resync with AD.&#160; This worked great and the client was happy.</p>
<p>net stop w32time   <br />w32tm /unregister    <br />w32tm /register    <br />net start w32time    <br />w32tm /resync</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eaglebcr.wordpress.com/177/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eaglebcr.wordpress.com/177/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eaglebcr.wordpress.com/177/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eaglebcr.wordpress.com/177/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eaglebcr.wordpress.com/177/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eaglebcr.wordpress.com/177/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eaglebcr.wordpress.com/177/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eaglebcr.wordpress.com/177/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eaglebcr.wordpress.com/177/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eaglebcr.wordpress.com/177/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eaglebcr.wordpress.com/177/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eaglebcr.wordpress.com/177/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eaglebcr.wordpress.com/177/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eaglebcr.wordpress.com/177/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eaglebcr.wordpress.com&amp;blog=9655884&amp;post=177&amp;subd=eaglebcr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eaglebcr.wordpress.com/2011/09/16/resync-ntp-time-to-local-dc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/02f48021aac07b75ddc26fb956ede60b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">eaglebcr</media:title>
		</media:content>
	</item>
		<item>
		<title>Server 8 Minasi Newsletter</title>
		<link>http://eaglebcr.wordpress.com/2011/09/14/server-8-minasi-newsletter/</link>
		<comments>http://eaglebcr.wordpress.com/2011/09/14/server-8-minasi-newsletter/#comments</comments>
		<pubDate>Wed, 14 Sep 2011 21:14:38 +0000</pubDate>
		<dc:creator>eaglebcr</dc:creator>
				<category><![CDATA[Server 8]]></category>

		<guid isPermaLink="false">https://eaglebcr.wordpress.com/2011/09/14/server-8-minasi-newsletter/</guid>
		<description><![CDATA[Here is Mark Minasi’s latest Tech Page regarding Server 8 and the technologies built into Microsoft’s latest server class OS. http://www.minasi.com/newsletters/nws1109.htm<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eaglebcr.wordpress.com&amp;blog=9655884&amp;post=176&amp;subd=eaglebcr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here is Mark Minasi’s latest Tech Page regarding Server 8 and the technologies built into Microsoft’s latest server class OS.</p>
<p><a title="http://www.minasi.com/newsletters/nws1109.htm" href="http://www.minasi.com/newsletters/nws1109.htm">http://www.minasi.com/newsletters/nws1109.htm</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/eaglebcr.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/eaglebcr.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/eaglebcr.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/eaglebcr.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/eaglebcr.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/eaglebcr.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/eaglebcr.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/eaglebcr.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/eaglebcr.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/eaglebcr.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/eaglebcr.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/eaglebcr.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/eaglebcr.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/eaglebcr.wordpress.com/176/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=eaglebcr.wordpress.com&amp;blog=9655884&amp;post=176&amp;subd=eaglebcr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://eaglebcr.wordpress.com/2011/09/14/server-8-minasi-newsletter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/02f48021aac07b75ddc26fb956ede60b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">eaglebcr</media:title>
		</media:content>
	</item>
	</channel>
</rss>
