<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Windows and mount points&#8230;</title>
	<atom:link href="http://gotitsolutions.org/2008/02/02/windows-and-mount-points.html/feed" rel="self" type="application/rss+xml" />
	<link>http://gotitsolutions.org/2008/02/02/windows-and-mount-points.html</link>
	<description>Get Information Technology Conjecture...</description>
	<lastBuildDate>Sun, 14 Nov 2010 23:34:36 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>By: Josue Meisner</title>
		<link>http://gotitsolutions.org/2008/02/02/windows-and-mount-points.html/comment-page-1#comment-758</link>
		<dc:creator>Josue Meisner</dc:creator>
		<pubDate>Wed, 01 Sep 2010 14:04:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.gotitsolutions.org/2008/02/02/windows-and-mount-points.html#comment-758</guid>
		<description>Hello I was digging for valuable information on inks for superwide
printers. Your site was listed on Google in this category, you have
an informative site.</description>
		<content:encoded><![CDATA[<p>Hello I was digging for valuable information on inks for superwide<br />
printers. Your site was listed on Google in this category, you have<br />
an informative site.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bill</title>
		<link>http://gotitsolutions.org/2008/02/02/windows-and-mount-points.html/comment-page-1#comment-618</link>
		<dc:creator>Bill</dc:creator>
		<pubDate>Thu, 03 Jun 2010 17:53:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.gotitsolutions.org/2008/02/02/windows-and-mount-points.html#comment-618</guid>
		<description>&lt;p&gt;
  Thanks for the script! This also works on WIndows 2008 EE. I am
  running&#160;it hourly and keeping for 30 days in SQL Server
  2008, then using Reporting Services email subscriptions each
  morning to monitor trends.
&lt;/p&gt;
&lt;p&gt;
  I rearranged your script to create a suitable flat file. I loop
  twice to check both nodes of a failover cluster.
&lt;/p&gt;
&lt;p&gt;
  &lt;strong&gt;——— SCRIPT STARTS HERE ———&lt;/strong&gt; WScript.Echo
  &quot;TimeStamp&#124;Server&#124;Label&#124;Mount_Point&#124;Block_Size_K&#124;File_System&#124;Capacity_GB&#124;Used_Space_GB&#124;Free_Space_GB&#124;Percent_Free&quot;
&lt;/p&gt;
&lt;p&gt;
  strComputer = &quot;GAALPA1TOOLSDB1&quot; Set objWMIService =
  GetObject(&quot;winmgmts:&quot; _ &amp;
  &quot;{impersonationLevel=impersonate}!\\&quot; &amp; strComputer &amp;
  &quot;\root\cimv2&quot;) Set colItems = objWMIService.ExecQuery(&quot;Select *
  from Win32_Volume where label like &#039;Pans%&#039;&quot;) For Each objItem In
  colItems WScript.Echo Date &amp; &quot; &quot; &amp; Time &amp; &quot;&#124;&quot; _ &amp;
  strComputer &amp; &quot;&#124;&quot; _ &amp; objItem.Label &amp; &quot;&#124;&quot; _ &amp;
  objItem.Name &amp; &quot;&#124;&quot; _ &amp; (objItem.BlockSize / 1024) &amp;
  &quot;&#124;&quot; _ &amp; objItem.FileSystem &amp; &quot;&#124;&quot; _ &amp;
  round(objItem.Capacity / 1048576 / 1024,2) &amp; &quot;&#124;&quot; _ &amp;
  round((objItem.Capacity - objItem.FreeSpace) / 1048576 / 1024,2)
  &amp; &quot;&#124;&quot; _ &amp; round(objItem.FreeSpace / 1048576 /
  1024,2)&#160; &amp; &quot;&#124;&quot; _ &amp; round(objItem.FreeSpace /
  objItem.Capacity,2) * 100 Next
&lt;/p&gt;
&lt;p&gt;
  strComputer = &quot;GAALPA1TOOLSDB2&quot; Set objWMIService =
  GetObject(&quot;winmgmts:&quot; _ &amp;
  &quot;{impersonationLevel=impersonate}!\\&quot; &amp; strComputer &amp;
  &quot;\root\cimv2&quot;) Set colItems = objWMIService.ExecQuery(&quot;Select *
  from Win32_Volume where label like &#039;Pans%&#039;&quot;) For Each objItem In
  colItems WScript.Echo Date &amp; &quot; &quot; &amp; Time &amp; &quot;&#124;&quot; _ &amp;
  strComputer &amp; &quot;&#124;&quot; _ &amp; objItem.Label &amp; &quot;&#124;&quot; _ &amp;
  objItem.Name &amp; &quot;&#124;&quot; _ &amp; (objItem.BlockSize / 1024) &amp;
  &quot;&#124;&quot; _ &amp; objItem.FileSystem &amp; &quot;&#124;&quot; _ &amp;
  round(objItem.Capacity / 1048576 / 1024,2) &amp; &quot;&#124;&quot; _ &amp;
  round((objItem.Capacity - objItem.FreeSpace) / 1048576 / 1024,2)
  &amp; &quot;&#124;&quot; _ &amp; round(objItem.FreeSpace / 1048576 /
  1024,2)&#160; &amp; &quot;&#124;&quot; _ &amp; round(objItem.FreeSpace /
  objItem.Capacity,2) * 100 Next&lt;strong&gt;——— SCRIPT ENDS HERE
  ———&lt;/strong&gt;
&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>
  Thanks for the script! This also works on WIndows 2008 EE. I am<br />
  running&nbsp;it hourly and keeping for 30 days in SQL Server<br />
  2008, then using Reporting Services email subscriptions each<br />
  morning to monitor trends.
</p>
<p>
  I rearranged your script to create a suitable flat file. I loop<br />
  twice to check both nodes of a failover cluster.
</p>
<p>
  <strong>——— SCRIPT STARTS HERE ———</strong> WScript.Echo<br />
  &#8220;TimeStamp|Server|Label|Mount_Point|Block_Size_K|File_System|Capacity_GB|Used_Space_GB|Free_Space_GB|Percent_Free&#8221;
</p>
<p>
  strComputer = &#8220;GAALPA1TOOLSDB1&#8243; Set objWMIService =<br />
  GetObject(&#8220;winmgmts:&#8221; _ &amp;<br />
  &#8220;{impersonationLevel=impersonate}!\\&#8221; &amp; strComputer &amp;<br />
  &#8220;\root\cimv2&#8243;) Set colItems = objWMIService.ExecQuery(&#8220;Select *<br />
  from Win32_Volume where label like &#8216;Pans%&#8217;&#8221;) For Each objItem In<br />
  colItems WScript.Echo Date &amp; &#8221; &#8221; &amp; Time &amp; &#8220;|&#8221; _ &amp;<br />
  strComputer &amp; &#8220;|&#8221; _ &amp; objItem.Label &amp; &#8220;|&#8221; _ &amp;<br />
  objItem.Name &amp; &#8220;|&#8221; _ &amp; (objItem.BlockSize / 1024) &amp;<br />
  &#8220;|&#8221; _ &amp; objItem.FileSystem &amp; &#8220;|&#8221; _ &amp;<br />
  round(objItem.Capacity / 1048576 / 1024,2) &amp; &#8220;|&#8221; _ &amp;<br />
  round((objItem.Capacity &#8211; objItem.FreeSpace) / 1048576 / 1024,2)<br />
  &amp; &#8220;|&#8221; _ &amp; round(objItem.FreeSpace / 1048576 /<br />
  1024,2)&nbsp; &amp; &#8220;|&#8221; _ &amp; round(objItem.FreeSpace /<br />
  objItem.Capacity,2) * 100 Next
</p>
<p>
  strComputer = &#8220;GAALPA1TOOLSDB2&#8243; Set objWMIService =<br />
  GetObject(&#8220;winmgmts:&#8221; _ &amp;<br />
  &#8220;{impersonationLevel=impersonate}!\\&#8221; &amp; strComputer &amp;<br />
  &#8220;\root\cimv2&#8243;) Set colItems = objWMIService.ExecQuery(&#8220;Select *<br />
  from Win32_Volume where label like &#8216;Pans%&#8217;&#8221;) For Each objItem In<br />
  colItems WScript.Echo Date &amp; &#8221; &#8221; &amp; Time &amp; &#8220;|&#8221; _ &amp;<br />
  strComputer &amp; &#8220;|&#8221; _ &amp; objItem.Label &amp; &#8220;|&#8221; _ &amp;<br />
  objItem.Name &amp; &#8220;|&#8221; _ &amp; (objItem.BlockSize / 1024) &amp;<br />
  &#8220;|&#8221; _ &amp; objItem.FileSystem &amp; &#8220;|&#8221; _ &amp;<br />
  round(objItem.Capacity / 1048576 / 1024,2) &amp; &#8220;|&#8221; _ &amp;<br />
  round((objItem.Capacity &#8211; objItem.FreeSpace) / 1048576 / 1024,2)<br />
  &amp; &#8220;|&#8221; _ &amp; round(objItem.FreeSpace / 1048576 /<br />
  1024,2)&nbsp; &amp; &#8220;|&#8221; _ &amp; round(objItem.FreeSpace /<br />
  objItem.Capacity,2) * 100 Next<strong>——— SCRIPT ENDS HERE<br />
  ———</strong></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eli Ledl</title>
		<link>http://gotitsolutions.org/2008/02/02/windows-and-mount-points.html/comment-page-1#comment-599</link>
		<dc:creator>Eli Ledl</dc:creator>
		<pubDate>Tue, 30 Mar 2010 23:59:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.gotitsolutions.org/2008/02/02/windows-and-mount-points.html#comment-599</guid>
		<description>I think microsoft should make microsoft points free...</description>
		<content:encoded><![CDATA[<p>I think microsoft should make microsoft points free&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: EV</title>
		<link>http://gotitsolutions.org/2008/02/02/windows-and-mount-points.html/comment-page-1#comment-505</link>
		<dc:creator>EV</dc:creator>
		<pubDate>Sun, 12 Apr 2009 21:41:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.gotitsolutions.org/2008/02/02/windows-and-mount-points.html#comment-505</guid>
		<description>Note that the Win32_Volume class it uses is not available on Win XP
and earlier
http://msdn.microsoft.com/en-us/library/aa394515%28VS.85%29.aspx
(you&#039;ll see error 0x80041010, class not found) If you just want to
see all volumes, use &quot;Select * from Win32_Volume&quot; Remember to fix
the typographic quotes before you tey to run it.</description>
		<content:encoded><![CDATA[<p>Note that the Win32_Volume class it uses is not available on Win XP<br />
and earlier<br />
<a href="http://msdn.microsoft.com/en-us/library/aa394515%28VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa394515%28VS.85%29.aspx</a><br />
(you&#8217;ll see error 0&#215;80041010, class not found) If you just want to<br />
see all volumes, use &#8220;Select * from Win32_Volume&#8221; Remember to fix<br />
the typographic quotes before you tey to run it.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

