<?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/"
	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>Comments on: SQL SERVER &#8211; Powershell &#8211; Get a List of Fixed Hard Drive and Free Space on Server</title>
	<atom:link href="http://blog.sqlauthority.com/2011/11/27/sql-server-powershell-get-a-list-of-fixed-hard-drive-and-free-space-on-server/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2011/11/27/sql-server-powershell-get-a-list-of-fixed-hard-drive-and-free-space-on-server/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Thu, 23 May 2013 14:22:59 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Victor</title>
		<link>http://blog.sqlauthority.com/2011/11/27/sql-server-powershell-get-a-list-of-fixed-hard-drive-and-free-space-on-server/#comment-258008</link>
		<dc:creator><![CDATA[Victor]]></dc:creator>
		<pubDate>Wed, 29 Feb 2012 18:12:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=16062#comment-258008</guid>
		<description><![CDATA[how do you add the computer name on the result]]></description>
		<content:encoded><![CDATA[<p>how do you add the computer name on the result</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Feodor Georgiev</title>
		<link>http://blog.sqlauthority.com/2011/11/27/sql-server-powershell-get-a-list-of-fixed-hard-drive-and-free-space-on-server/#comment-255623</link>
		<dc:creator><![CDATA[Feodor Georgiev]]></dc:creator>
		<pubDate>Thu, 23 Feb 2012 09:41:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=16062#comment-255623</guid>
		<description><![CDATA[Here is a better script, which also displays mountpoints and status information: 

http://sqlconcept.com/2012/02/23/disk-and-mount-points-space-and-properties/]]></description>
		<content:encoded><![CDATA[<p>Here is a better script, which also displays mountpoints and status information: </p>
<p><a href="http://sqlconcept.com/2012/02/23/disk-and-mount-points-space-and-properties/" rel="nofollow">http://sqlconcept.com/2012/02/23/disk-and-mount-points-space-and-properties/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lucho</title>
		<link>http://blog.sqlauthority.com/2011/11/27/sql-server-powershell-get-a-list-of-fixed-hard-drive-and-free-space-on-server/#comment-222163</link>
		<dc:creator><![CDATA[Lucho]]></dc:creator>
		<pubDate>Tue, 20 Dec 2011 14:34:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=16062#comment-222163</guid>
		<description><![CDATA[a good one! simple and easy!]]></description>
		<content:encoded><![CDATA[<p>a good one! simple and easy!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Balu K</title>
		<link>http://blog.sqlauthority.com/2011/11/27/sql-server-powershell-get-a-list-of-fixed-hard-drive-and-free-space-on-server/#comment-208982</link>
		<dc:creator><![CDATA[Balu K]]></dc:creator>
		<pubDate>Fri, 02 Dec 2011 00:36:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=16062#comment-208982</guid>
		<description><![CDATA[Can you also help the script to view the list of files which occupies more space in disk .]]></description>
		<content:encoded><![CDATA[<p>Can you also help the script to view the list of files which occupies more space in disk .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Suneel Mehra</title>
		<link>http://blog.sqlauthority.com/2011/11/27/sql-server-powershell-get-a-list-of-fixed-hard-drive-and-free-space-on-server/#comment-208700</link>
		<dc:creator><![CDATA[Suneel Mehra]]></dc:creator>
		<pubDate>Thu, 01 Dec 2011 15:02:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=16062#comment-208700</guid>
		<description><![CDATA[Good one, this is my first reply to sqlauthority.com. Pinal, it there any way to get total drive space as well?]]></description>
		<content:encoded><![CDATA[<p>Good one, this is my first reply to sqlauthority.com. Pinal, it there any way to get total drive space as well?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fredmorrison</title>
		<link>http://blog.sqlauthority.com/2011/11/27/sql-server-powershell-get-a-list-of-fixed-hard-drive-and-free-space-on-server/#comment-205649</link>
		<dc:creator><![CDATA[fredmorrison]]></dc:creator>
		<pubDate>Sun, 27 Nov 2011 14:19:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=16062#comment-205649</guid>
		<description><![CDATA[The source code for the PowerShell command is cut-off when viewed with IE9, so for those who cannot see the full line here it is:

Get-WmiObject -Class Win32_LogicalDisk &#124; Select -Property DeviceID, @{Name=’FreeSpaceMB’;Expression={$_.FreeSpace/1MB} } &#124; Format-Table -AutoSize]]></description>
		<content:encoded><![CDATA[<p>The source code for the PowerShell command is cut-off when viewed with IE9, so for those who cannot see the full line here it is:</p>
<p>Get-WmiObject -Class Win32_LogicalDisk | Select -Property DeviceID, @{Name=’FreeSpaceMB’;Expression={$_.FreeSpace/1MB} } | Format-Table -AutoSize</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bernd Kriszio</title>
		<link>http://blog.sqlauthority.com/2011/11/27/sql-server-powershell-get-a-list-of-fixed-hard-drive-and-free-space-on-server/#comment-205572</link>
		<dc:creator><![CDATA[Bernd Kriszio]]></dc:creator>
		<pubDate>Sun, 27 Nov 2011 11:25:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=16062#comment-205572</guid>
		<description><![CDATA[Well sometimes you don&#039;t have the access rights on some machine, while you have the rights to use xp_fixeddrives. I need both methods to get all the information I need.]]></description>
		<content:encoded><![CDATA[<p>Well sometimes you don&#8217;t have the access rights on some machine, while you have the rights to use xp_fixeddrives. I need both methods to get all the information I need.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
