<?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>Michael Phillips Blog &#187; Operational Excellence</title>
	<atom:link href="http://nukeitmike.com/blog/category/operational-excellence/feed" rel="self" type="application/rss+xml" />
	<link>http://nukeitmike.com/blog</link>
	<description>My place to speak about things</description>
	<lastBuildDate>Thu, 29 Jul 2010 20:57:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Monitoring drive space</title>
		<link>http://nukeitmike.com/blog/2009/09/04/monitoring-drive-space/</link>
		<comments>http://nukeitmike.com/blog/2009/09/04/monitoring-drive-space/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 21:25:29 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[General Info]]></category>
		<category><![CDATA[Operational Excellence]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[storage]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://nukeitmike.com/blog/2009/09/04/monitoring-drive-space/</guid>
		<description><![CDATA[One of the things that we spend a lot of time on is trying to keep track of what servers have enough free space.&#160; We have a lot of different tools to check drive space, and we even use some of them from time to time.&#160; We have a pretty complicated system created by Rickey [...]]]></description>
			<content:encoded><![CDATA[<p>One of the things that we spend a lot of time on is trying to keep track of what servers have enough free space.&#160; We have a lot of different tools to check drive space, and we even use some of them from time to time.&#160; We have a pretty complicated system created by <a href="http://www.whitworth.org/" target="_blank">Rickey</a> that creates a nice webpage, with highlighting for problem areas (percentage change from day to day, current percent free, etc.)&#160; It even puts the info into a database for historical reporting.</p>
<p>We don’t store or report on VMs currently, mainly because we were trying to keep track of total REAL disk used.&#160; VMs often don’t use as much as they think they do, so that would skew the results, as well as the fact that we are reporting on the hosts.&#160; </p>
<p>All of that is the reason that <a href="http://pburch.com/blog" target="_blank">Patrick</a> asked me to come up with some other tool to use for the VMs so I happened to find a few pieces of PowerShell script that I managed to put together to do a pretty good job of providing some of the info we wanted, and I thought I would share that with the 2 people who read my blog.&#160; <img src='http://nukeitmike.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>&#160;</p>
<blockquote><p>$servers = Get-Content servers.txt </p>
<p>#Open Excel and create a new workbook and worksheet     <br />$ExcelSheet=New-Object -comobject Excel.application&#160;&#160;&#160; <br />$WorkBook=$ExcelSheet.WorkBooks.add(1)&#160;&#160;&#160;&#160; <br />$WorkSheet=$WorkBook.WorkSheets.item(1)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; </p>
<p>#Header row     <br />$WorkSheet.cells.item(1,1)=”Computer Name”&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />$WorkSheet.cells.item(1,2)=”Disk Device ID”&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />$WorkSheet.cells.item(1,3)=”Volume Name”&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />$WorkSheet.cells.item(1,4)=”Size (GB)”&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />$WorkSheet.cells.item(1,5)=”Free Space (GB)”      <br />$WorkSheet.cells.item(1,6)=”Space Used (GB)”      <br />$WorkSheet.cells.item(1,7)=”Percent Used” </p>
<p>$i=2 </p>
<p>ForEach ($ComputerName in $servers)     <br />{&#160;&#160;&#160; <br />&#160;&#160;&#160; echo &quot;Server Name : &quot;, $ComputerName      <br />&#160;&#160;&#160; $Disks = gwmi –computername $ComputerName win32_logicaldisk -filter &quot;drivetype=3&quot; </p>
<p>&#160;&#160;&#160; foreach ($Disk in $Disks)      <br />&#160;&#160;&#160; {      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; $Size = &quot;{0:0.0}&quot; -f ($Disk.Size/1GB)      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; $FreeSpace = &quot;{0:0.0}&quot; -f ($Disk.FreeSpace/1GB)      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; $Used = ([int64]$Disk.size &#8211; [int64]$Disk.freespace)      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; $SpaceUsed = &quot;{0:0.0}&quot; -f ($Used/1GB)      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; $Percent = ($Used * 100.0)/$Disk.Size      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; $Percent = &quot;{0:N0}&quot; -f $Percent      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $WorkSheet.cells.item($i,1)=$ComputerName      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $WorkSheet.cells.item($i,2)=$Disk.deviceid      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $WorkSheet.cells.item($i,3)=$Disk.volumename      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $WorkSheet.cells.item($i,4)=$Size      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $WorkSheet.cells.item($i,5)=$FreeSpace      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $WorkSheet.cells.item($i,6)=$SpaceUsed      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $WorkSheet.cells.item($i,7)=$Percent </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $i=$i+1&#160;&#160;&#160;&#160;&#160; <br />&#160;&#160;&#160; }      <br />}      <br />#Show the results      <br />$ExcelSheet.visible=$true</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://nukeitmike.com/blog/2009/09/04/monitoring-drive-space//feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It&#8217;s all in the Clouds&#8230;</title>
		<link>http://nukeitmike.com/blog/2009/05/07/its-all-in-the-clouds/</link>
		<comments>http://nukeitmike.com/blog/2009/05/07/its-all-in-the-clouds/#comments</comments>
		<pubDate>Thu, 07 May 2009 18:33:28 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Data Center]]></category>
		<category><![CDATA[General Info]]></category>
		<category><![CDATA[Operational Excellence]]></category>
		<category><![CDATA[Cloud]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[strategies]]></category>
		<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://nukeitmike.com/blog/2009/05/07/its-all-in-the-clouds/</guid>
		<description><![CDATA[Recently I attended the Microsoft Management Summit in Las Vegas.&#160; One of the big pushes that is on the minds of everyone these days, is the Cloud Computing concept.&#160; As a Systems Engineer, the thought is that I should be afraid of this push, because it moves the processing out of the datacenter and into [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I attended the Microsoft Management Summit in Las Vegas.&#160; One of the big pushes that is on the minds of everyone these days, is the Cloud Computing concept.&#160; As a Systems Engineer, the thought is that I should be afraid of this push, because it moves the processing out of the datacenter and into a hosted environment.&#160; During the conference this was addressed in part by saying, you can have it both ways…&#160; You can have the Cloud available in a “Capacity on Demand” kind of way, but also use the same technologies to manage your Private Cloud.</p>
<p>I came accross an interesting article that addresses some of this concern with the suggestion that IT needs to learn how to build and manage the Private Cloud: </p>
<blockquote><p>One of the biggest strategic challenges facing IT organizations today is remaining competitive in a world full of cloud services that essentially outsource the IT function.</p></blockquote>
<p><a href="http://www.baselinemag.com/c/a/IT-Management/How-to-Build-Private-Clouds-671545/?kc=EWWHNEMNL05072009STR1">How to Build Private Clouds &#8211; IT Management</a></p>
]]></content:encoded>
			<wfw:commentRss>http://nukeitmike.com/blog/2009/05/07/its-all-in-the-clouds//feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Raise Your Data Center Temperature</title>
		<link>http://nukeitmike.com/blog/2009/03/26/raise-your-data-center-temperature/</link>
		<comments>http://nukeitmike.com/blog/2009/03/26/raise-your-data-center-temperature/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 14:36:22 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Data Center]]></category>
		<category><![CDATA[General Info]]></category>
		<category><![CDATA[Operational Excellence]]></category>
		<category><![CDATA[Cooling]]></category>
		<category><![CDATA[efficiencies]]></category>

		<guid isPermaLink="false">http://nukeitmike.com/blog/2009/03/26/raise-your-data-center-temperature/</guid>
		<description><![CDATA[After following a link to a story about Google’s abilities to “route around outages” that Patrick had on his Blog, I saw a link to another story about Google’s Data Center practices.&#160; Apparently you don’t have to keep the Data Center frigid these days…&#160; Most data centers operate in a temperature range between 68 and [...]]]></description>
			<content:encoded><![CDATA[<p>After following a link to a story about Google’s abilities to “<a href="http://www.datacenterknowledge.com/archives/2009/03/25/how-google-routes-around-outages/" target="_blank">route around outages</a>” that <a href="http://www.pburch.com/blog/" target="_blank">Patrick</a> had on his <a href="http://www.pburch.com/blog/2009/03/25/how-google-routes-around-outages/" target="_blank">Blog</a>, I saw a link to another story about Google’s Data Center practices.&#160; Apparently you don’t have to keep the Data Center frigid these days…&#160; </p>
<blockquote><p>Most data centers operate in a temperature range between 68 and 72 degrees, and some are as cold as 55 degrees. Raising the baseline temperature inside the data center &#8211; known as a set point &#8211; can save money spent on air conditioning. Data center managers can save 4 percent in energy costs for every degree of upward change in the set point, according to Mark Monroe of Sun Microsystems, who discussed <a href="http://www.datacenterknowledge.com/archives/2007/09/24/data-center-cooling-set-points-debated/">data center set points</a> at a conference last year. But nudging the thermostat higher may also leave less time to recover from a cooling failure, and is only appropriate for companies with a strong understanding of the cooling conditions in their facility</p></blockquote>
<p><a href="http://www.datacenterknowledge.com/archives/2008/10/14/google-raise-your-data-center-temperature/">Google: Raise Your Data Center Temperature « Data Center Knowledge</a></p>
]]></content:encoded>
			<wfw:commentRss>http://nukeitmike.com/blog/2009/03/26/raise-your-data-center-temperature//feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multiple Categories in a SharePoint Blog</title>
		<link>http://nukeitmike.com/blog/2007/06/28/multiple-categories-in-a-sharepoint-blog/</link>
		<comments>http://nukeitmike.com/blog/2007/06/28/multiple-categories-in-a-sharepoint-blog/#comments</comments>
		<pubDate>Thu, 28 Jun 2007 01:49:15 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Operational Excellence]]></category>
		<category><![CDATA[SharePoint 2007]]></category>

		<guid isPermaLink="false">http://www.nukeitmike.com/blog/2007/06/28/MultipleCategoriesInASharePointBlog.aspx</guid>
		<description><![CDATA[I recently came up with an idea to use an internal blog to document stuff happening in our group at work.&#160; (Document what you know&#8230;)&#160; The problem was that SharePoint Blogs by default limit you to one category per post and that just would be as helpful in my mind.&#160; So I did a search [...]]]></description>
			<content:encoded><![CDATA[<p>I recently came up with an idea to use an internal blog to document stuff happening in our group at work.&nbsp; <a href="http://www.nukeitmike.com/blog/PermaLink.aspx?guid=3349eea4-e593-489d-8292-06fe318b8a5f" target="_blank">(Document what you know&#8230;)</a>&nbsp; </p>
<p>The problem was that SharePoint Blogs by default limit you to one category per post and that just would be as helpful in my mind.&nbsp; So I did a search and came up with <a href="http://blogs.technet.com/lliu/archive/2006/09/02/453651.aspx" target="_blank">this post</a> on <a href="http://blogs.technet.com/lliu/default.aspx" target="_blank">Lawrence Liu&#8217;s Blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://nukeitmike.com/blog/2007/06/28/multiple-categories-in-a-sharepoint-blog//feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Document what you know&#8230;</title>
		<link>http://nukeitmike.com/blog/2007/06/27/document-what-you-know/</link>
		<comments>http://nukeitmike.com/blog/2007/06/27/document-what-you-know/#comments</comments>
		<pubDate>Wed, 27 Jun 2007 12:59:53 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[General Info]]></category>
		<category><![CDATA[Operational Excellence]]></category>

		<guid isPermaLink="false">http://www.nukeitmike.com/blog/2007/06/27/DocumentWhatYouKnow.aspx</guid>
		<description><![CDATA[or maybe even what you don&#8217;t know? I recently (last night) came up with an idea on how to do a better job of sharing information with the rest of my department.&#160; We use SharePoint for a lot of things.&#160; It occurred to me that a Blog would be a good way of sharing information [...]]]></description>
			<content:encoded><![CDATA[<p>or maybe even what you don&#8217;t know?</p>
<p>I recently (last night) came up with an idea on how to do a better job of sharing information with the rest of my department.&nbsp; We use SharePoint for a lot of things.&nbsp; It occurred to me that a Blog would be a good way of sharing information on how to fix issues, troubleshoot issues or even to say &#8220;we know there is a problem, but we haven&#8217;t figured it out yet.</p>
<p>Well you don&#8217;t really want to put that stuff out in public unless it has been cleared of information that you don&#8217;t want everyone to know about.&nbsp; Specifics of your organization may end up there and it would probably be a good idea to not allow that sort of information to be just randomly published.&nbsp; But if it is an internal, authentication required to view, you must have a reason for being there kind of place&#8230;</p>
<p>So we have set up a Blog site for our group.&nbsp; A colleague and I will try it and see if we can get the rest of the guys on board with it.&nbsp; (That is if I can get him interested.)</p>
]]></content:encoded>
			<wfw:commentRss>http://nukeitmike.com/blog/2007/06/27/document-what-you-know//feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
