<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Brainfreeze: Volume reporting with OnTap Powershell Toolkit in Microsoft Virtualization Discussions</title>
    <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Brainfreeze-Volume-reporting-with-OnTap-Powershell-Toolkit/m-p/126903#M5184</link>
    <description>&lt;P&gt;if i'm reading what you wrote correctly:&lt;/P&gt;&lt;P&gt;snapshotused = snapshottotal&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;SnapshotReserve - SnapshotUsed = SnapshotFree if snapshotused -lt snapshotreserve&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i'm curious why you are doing the get-ncsnapshot and math to get the snapshot used space since&amp;nbsp;get-ncefficiency returns snapshotused.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i ran your command on a single volume and it seemed to return the correct values for me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;personally, i would avoid get-ncefficiency and use get-ncvol since get-ncefficiency is a heavy and slow command.&lt;/P&gt;&lt;P&gt;something like:&lt;/P&gt;&lt;P&gt;$vols = get-ncvol | select name,@{n="totalsize";e={$_.VolumeSpaceAttributes.Size/1gb}},&lt;BR /&gt;@{n="free";e={$_.VolumeSpaceAttributes.SizeAvailable/1gb}},&lt;BR /&gt;@{n="data size";e={$_.VolumeSpaceAttributes.SizeTotal/1gb}},&lt;BR /&gt;@{n="data used";e={$_.VolumeSpaceAttributes.SizeUsed/1gb}},&lt;BR /&gt;@{n="snap size";e={$_.VolumeSpaceAttributes.SizeUsedBySnapshots/1gb}},&lt;BR /&gt;@{n="snap reserve";e={$_.VolumeSpaceAttributes.SnapshotReserveSize/1gb}},&lt;BR /&gt;@{n="snap overflow";e={if($_.VolumeSpaceAttributes.SizeUsedBySnapshots -gt $_.VolumeSpaceAttributes.SnapshotReserveSize){($_.VolumeSpaceAttributes.SizeUsedBySnapshots - $_.VolumeSpaceAttributes.SnapshotReserveSize)/1gb}else{0}}}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;this is all in GB and the formatting is - well, there isn't any&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;hth&lt;/P&gt;</description>
    <pubDate>Wed, 11 Jan 2017 18:10:57 GMT</pubDate>
    <dc:creator>markweber</dc:creator>
    <dc:date>2017-01-11T18:10:57Z</dc:date>
    <item>
      <title>Brainfreeze: Volume reporting with OnTap Powershell Toolkit</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Brainfreeze-Volume-reporting-with-OnTap-Powershell-Toolkit/m-p/126891#M5182</link>
      <description>&lt;P&gt;Hi Techexperts,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i have been tasked by my customer with creating a volume based report for him, that contains&lt;/P&gt;&lt;P&gt;- Name of the volume&lt;/P&gt;&lt;P&gt;- Total Volume Size&lt;/P&gt;&lt;P&gt;- Used Data Space&lt;/P&gt;&lt;P&gt;- Free Data Space&lt;/P&gt;&lt;P&gt;- Used Snapshot Space&lt;/P&gt;&lt;P&gt;- Free Snapshot Space (regarding the reserve)&lt;/P&gt;&lt;P&gt;- Overflow Snapshot Space (if existing)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Getting the volume's data confuses me, because the GUI is showing values that is not reflecting by Get-NcVol, Get-NcEfficiency, Get-NcSnapshot... somehow.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We are running Ontap 8.3.1, but when viewing bar char on the volume's storage allocation tab, it seems the values are not assigned correctly to the lines.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="SpaceAllocation.png" style="width: 531px;"&gt;&lt;img src="https://community.netapp.com/t5/image/serverpage/image-id/6592iCFB6559002DD55D0/image-size/large?v=v2&amp;amp;px=999" role="button" title="SpaceAllocation.png" alt="SpaceAllocation.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was using the Ontap Powershell Tookit to retrieve the values but i have&amp;nbsp;some difficulties&amp;nbsp;accumulating the snapshot spaces correctly&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Get-NcEfficiency | sort-object Name | Select-Object Name, TotalLunSize, Used, Free, @{Label="SnapshotUsed";Expression={(Get-NcSnapshot $($_.Name) | Measure-Object Total -Sum).Sum }}, SnapshotReserve, SnapshotOverflow | Export-Csv -NoTypeInformation -Path "C:\temp\volumereport.csv"&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please feel free to correct me, but i was assuming that SnapshotReserve + SnapshotUsed + SnapshotOverflow = SnapshotTotal and that SnapshotReserve - SnapshotUsed = SnapshotFree&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So when I run the command, the result for the&amp;nbsp;volume shown&amp;nbsp;is:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Name&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : D5&lt;BR /&gt;TotalLunSize&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : 0&lt;BR /&gt;Used&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : 660389388288&lt;BR /&gt;Free&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : 206657134592&lt;BR /&gt;SnapshotUsed&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : 278830014464&lt;BR /&gt;SnapshotReserve&amp;nbsp; : 45634027520&lt;BR /&gt;SnapshotOverflow : 227582599168&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;or with some more readable values:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Name&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : D5&lt;BR /&gt;TotalLunSize&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : 0&lt;BR /&gt;Used&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : 1803,59&lt;BR /&gt;Free&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : 238,91&lt;BR /&gt;SnapshotUsed&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : 293,90&lt;BR /&gt;SnapshotReserve&amp;nbsp; : 107,50&lt;BR /&gt;SnapshotOverflow : 61,32&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As you can see, there are huge differences between what is shown in GUI and what is reported by the command.&lt;/P&gt;&lt;P&gt;And to make this problem more complex: for some volumes (mostly those without overflow space) there seem to be the same values displayed in GUI and in the result of the command.&lt;/P&gt;&lt;P&gt;So my questions are: which values can I trust and how do fetch the (correct) required values for the customers report&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jun 2025 15:34:43 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Brainfreeze-Volume-reporting-with-OnTap-Powershell-Toolkit/m-p/126891#M5182</guid>
      <dc:creator>piraconsk</dc:creator>
      <dc:date>2025-06-04T15:34:43Z</dc:date>
    </item>
    <item>
      <title>Re: Brainfreeze: Volume reporting with OnTap Powershell Toolkit</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Brainfreeze-Volume-reporting-with-OnTap-Powershell-Toolkit/m-p/126901#M5183</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.netapp.com/t5/user/viewprofilepage/user-id/56468"&gt;@piraconsk&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm seeing equivalent values using this bit of script for display:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Get-NcEfficiency -Volume $volName | 
    Sort-Object Name | 
    Select-Object Name, `
        TotalLunSize, `
        @{ 'N'="Used"; "E"={ ConvertTo-FormattedNumber -Type DataSize -NumberFormatString "0.00" -Value $_.Used }}, `
        @{ 'N'="Free"; "E"={ ConvertTo-FormattedNumber -Type DataSize -NumberFormatString "0.00" -Value $_.Free }}, `
        @{ Label="SnapshotUsed"; Expression={ 
            ConvertTo-FormattedNumber -Type DataSize -NumberFormatString "0.00" -Value (Get-NcSnapshot -Volume $($_.Name) | Sort-Object -Property Created -Descending | Select-Object -First 1).CumulativeTotal 
        } }, `
        @{ 'N'="SnapshotReserve"; "E"={ ConvertTo-FormattedNumber -Type DataSize -NumberFormatString "0.00" -Value $_.SnapshotReserve }}, `
        @{ 'N'="SnapshotOverflow"; "E"={ ConvertTo-FormattedNumber -Type DataSize -NumberFormatString "0.00" -Value $_.SnapshotOverflow }}&lt;/PRE&gt;&lt;P&gt;Note that I changed a few things. &amp;nbsp;First, and most verbosely, I'm using the ConvertTo-FormattedNumber cmdlet to display back the data size values. &amp;nbsp;Second, I modified the snapshot used field to use the "cumulative total" property from the old snapshot on the volume rather than summing the size of the snapshots.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://community.netapp.com/t5/image/serverpage/image-id/6593i69089431C193394E/image-size/original?v=v2&amp;amp;px=-1" border="0" alt="2017-01-11 12_46_50-Windows PowerShell ISE.png" title="2017-01-11 12_46_50-Windows PowerShell ISE.png" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://community.netapp.com/t5/image/serverpage/image-id/6594iCC8A83B97C58E7CE/image-size/original?v=v2&amp;amp;px=-1" border="0" alt="2017-01-11 12_47_01-VICE - NetApp OnCommand System Manager.png" title="2017-01-11 12_47_01-VICE - NetApp OnCommand System Manager.png" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also note that the "Used" value in the PowerShell output is going to be the size of the data + the size of the snapshot overflow, whereas System Manager reports them separately.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Andrew&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jan 2017 17:48:47 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Brainfreeze-Volume-reporting-with-OnTap-Powershell-Toolkit/m-p/126901#M5183</guid>
      <dc:creator>asulliva</dc:creator>
      <dc:date>2017-01-11T17:48:47Z</dc:date>
    </item>
    <item>
      <title>Re: Brainfreeze: Volume reporting with OnTap Powershell Toolkit</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Brainfreeze-Volume-reporting-with-OnTap-Powershell-Toolkit/m-p/126903#M5184</link>
      <description>&lt;P&gt;if i'm reading what you wrote correctly:&lt;/P&gt;&lt;P&gt;snapshotused = snapshottotal&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;SnapshotReserve - SnapshotUsed = SnapshotFree if snapshotused -lt snapshotreserve&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i'm curious why you are doing the get-ncsnapshot and math to get the snapshot used space since&amp;nbsp;get-ncefficiency returns snapshotused.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i ran your command on a single volume and it seemed to return the correct values for me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;personally, i would avoid get-ncefficiency and use get-ncvol since get-ncefficiency is a heavy and slow command.&lt;/P&gt;&lt;P&gt;something like:&lt;/P&gt;&lt;P&gt;$vols = get-ncvol | select name,@{n="totalsize";e={$_.VolumeSpaceAttributes.Size/1gb}},&lt;BR /&gt;@{n="free";e={$_.VolumeSpaceAttributes.SizeAvailable/1gb}},&lt;BR /&gt;@{n="data size";e={$_.VolumeSpaceAttributes.SizeTotal/1gb}},&lt;BR /&gt;@{n="data used";e={$_.VolumeSpaceAttributes.SizeUsed/1gb}},&lt;BR /&gt;@{n="snap size";e={$_.VolumeSpaceAttributes.SizeUsedBySnapshots/1gb}},&lt;BR /&gt;@{n="snap reserve";e={$_.VolumeSpaceAttributes.SnapshotReserveSize/1gb}},&lt;BR /&gt;@{n="snap overflow";e={if($_.VolumeSpaceAttributes.SizeUsedBySnapshots -gt $_.VolumeSpaceAttributes.SnapshotReserveSize){($_.VolumeSpaceAttributes.SizeUsedBySnapshots - $_.VolumeSpaceAttributes.SnapshotReserveSize)/1gb}else{0}}}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;this is all in GB and the formatting is - well, there isn't any&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;hth&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jan 2017 18:10:57 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Brainfreeze-Volume-reporting-with-OnTap-Powershell-Toolkit/m-p/126903#M5184</guid>
      <dc:creator>markweber</dc:creator>
      <dc:date>2017-01-11T18:10:57Z</dc:date>
    </item>
    <item>
      <title>Re: Brainfreeze: Volume reporting with OnTap Powershell Toolkit</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Brainfreeze-Volume-reporting-with-OnTap-Powershell-Toolkit/m-p/126904#M5185</link>
      <description>&lt;P&gt;&lt;a href="https://community.netapp.com/t5/user/viewprofilepage/user-id/9172"&gt;@markweber&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"i'm curious why you are doing the get-ncsnapshot and math to get the snapshot used space since&amp;nbsp;get-ncefficiency returns snapshotused."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Simple as that: the return values for&amp;nbsp;snapshotused from Get-NcEfficiency are not equal to (Get-NcSnapshot D5&amp;nbsp;| Measure-Object Total -Sum).Sum.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jan 2017 18:26:22 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Brainfreeze-Volume-reporting-with-OnTap-Powershell-Toolkit/m-p/126904#M5185</guid>
      <dc:creator>piraconsk</dc:creator>
      <dc:date>2017-01-11T18:26:22Z</dc:date>
    </item>
    <item>
      <title>Re: Brainfreeze: Volume reporting with OnTap Powershell Toolkit</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Brainfreeze-Volume-reporting-with-OnTap-Powershell-Toolkit/m-p/126905#M5186</link>
      <description>&lt;P&gt;interesting - they are for me:&lt;/P&gt;&lt;P&gt;PS E:\&amp;gt; (Get-NcEfficiency storage).SnapshotUsed&lt;BR /&gt;1083846656&lt;BR /&gt;PS E:\&amp;gt; (Get-NcSnapshot storage | Measure-Object Total -Sum).Sum&lt;BR /&gt;1083846656&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;are they the same for you when there isn't any snapshot overflow?&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jan 2017 19:27:32 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Brainfreeze-Volume-reporting-with-OnTap-Powershell-Toolkit/m-p/126905#M5186</guid>
      <dc:creator>markweber</dc:creator>
      <dc:date>2017-01-11T19:27:32Z</dc:date>
    </item>
    <item>
      <title>Re: Brainfreeze: Volume reporting with OnTap Powershell Toolkit</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Brainfreeze-Volume-reporting-with-OnTap-Powershell-Toolkit/m-p/126927#M5187</link>
      <description>&lt;P&gt;&lt;a href="https://community.netapp.com/t5/user/viewprofilepage/user-id/9172"&gt;@markweber&lt;/a&gt;&lt;/P&gt;&lt;P&gt;Indeed, very interesting they are equal on your device. And yes, i have noticed the performance of get-ncefficiency is not as high as with get-ncvol.&lt;/P&gt;&lt;P&gt;On my device the result looks like this:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;(Get-NcEfficiency D1).SnapshotUsed: 5618896896&lt;BR /&gt;(Get-NcSnapshot D1 | Measure-Object Total -Sum).Sum: 9651384320&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have noticed that there are a few "old" snapshots from a previous configuration existing. I am unable to see if, there is a baseline snapshot to this subset. Maybe the baseline has been deleted, so the SnapshotUsed differs from Sum?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have run your code sample vs my environment. For my example volume the result are matching the most.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Result from your fast query:&lt;BR /&gt;Name&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : D5&lt;BR /&gt;totalsize&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : 850&lt;BR /&gt;free&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : 192,476535797119140625&lt;BR /&gt;data size&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : 807,5&lt;BR /&gt;data used&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : 615,023464202880859375&lt;BR /&gt;snap size&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : 260,0552215576171875&lt;BR /&gt;snap reserve&amp;nbsp; : 42,5&lt;BR /&gt;snap overflow : 217,5552215576171875&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Result from my slow query:&lt;BR /&gt;Name&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : D5&lt;BR /&gt;TotalSize&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : 850&lt;BR /&gt;Data&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : 807,5&lt;BR /&gt;Used&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : 615,048320770263671875&lt;BR /&gt;Free&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : 192,451679229736328125&lt;BR /&gt;SnapshotUsed&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : 260,074733734131&lt;BR /&gt;SnapshotReserve&amp;nbsp; : 42,5&lt;BR /&gt;SnapshotOverflow : 211,876407623291015625&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The results are mostly equal, a slight difference in overflow space, which is negligible imho.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think i will stick with your Get-NcVol approach.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;About the graphical display, I'm assuming, that these values are sometimes sorted wrong due to a bug in the release?&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jan 2017 10:02:12 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Brainfreeze-Volume-reporting-with-OnTap-Powershell-Toolkit/m-p/126927#M5187</guid>
      <dc:creator>piraconsk</dc:creator>
      <dc:date>2017-01-12T10:02:12Z</dc:date>
    </item>
    <item>
      <title>Re: Brainfreeze: Volume reporting with OnTap Powershell Toolkit</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Brainfreeze-Volume-reporting-with-OnTap-Powershell-Toolkit/m-p/137356#M5609</link>
      <description>&lt;P&gt;I need&amp;nbsp;Powershell command which can pool datastore reached 80% from 7mode &amp;amp; C-mode.it sholud also send an email.&lt;/P&gt;&lt;P&gt;any one please give suggestion&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jan 2018 13:39:48 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Brainfreeze-Volume-reporting-with-OnTap-Powershell-Toolkit/m-p/137356#M5609</guid>
      <dc:creator>RavikumarVR</dc:creator>
      <dc:date>2018-01-17T13:39:48Z</dc:date>
    </item>
  </channel>
</rss>

