<?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: Raid Group Info via PowerShell in Microsoft Virtualization Discussions</title>
    <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Raid-Group-Info-via-PowerShell/m-p/25427#M1161</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sean,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Get-NaAggr suite of commands might help obtain the information you are after.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alternatively you may also use powershell to call an SSH utility (via a powershell function) to conenct to the storage controller and run the "aggr status -r command" which you could then output to a text file or into an array for manipulation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Dec 2013 01:15:49 GMT</pubDate>
    <dc:creator>CAMPBELLSI</dc:creator>
    <dc:date>2013-12-12T01:15:49Z</dc:date>
    <item>
      <title>Raid Group Info via PowerShell</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Raid-Group-Info-via-PowerShell/m-p/25422#M1160</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it possible to get detailed raid group info from the PowerShell Toolkit?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Something similar to "aggr status -r".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to be able to see how many raid groups, how many disks in each raid group, etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The end goal is to build a script that will report back on any aggregates with unbalanced raid groups.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Sean&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jun 2025 05:47:32 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Raid-Group-Info-via-PowerShell/m-p/25422#M1160</guid>
      <dc:creator>SeanLuce</dc:creator>
      <dc:date>2025-06-05T05:47:32Z</dc:date>
    </item>
    <item>
      <title>Re: Raid Group Info via PowerShell</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Raid-Group-Info-via-PowerShell/m-p/25427#M1161</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sean,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Get-NaAggr suite of commands might help obtain the information you are after.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alternatively you may also use powershell to call an SSH utility (via a powershell function) to conenct to the storage controller and run the "aggr status -r command" which you could then output to a text file or into an array for manipulation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Dec 2013 01:15:49 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Raid-Group-Info-via-PowerShell/m-p/25427#M1161</guid>
      <dc:creator>CAMPBELLSI</dc:creator>
      <dc:date>2013-12-12T01:15:49Z</dc:date>
    </item>
    <item>
      <title>Re: Raid Group Info via PowerShell</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Raid-Group-Info-via-PowerShell/m-p/25431#M1162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sean, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use Get-NaDisk to get started with your script. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's an example below where i use the where-object to filter out disks which belong to a raidgroup and also use measure-object to count the number of disks in the raid group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="java" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13868577286531788" jivemacro_uid="_13868577286531788"&gt;&lt;P&gt;Get-NaDisk | select raidgroup,aggregate,name,shelf,bay,status,physicalspace,RPM,FW,model,pool | ?{$_.raidgroup -match "rg0"} | select name | Measure-Object&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG src="http://community.netapp.com/legacyfs/online/24260_1.png" style="width: 864px; height: 144.17041420118343px;" width="864" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Dec 2013 14:14:48 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Raid-Group-Info-via-PowerShell/m-p/25431#M1162</guid>
      <dc:creator>vinith</dc:creator>
      <dc:date>2013-12-12T14:14:48Z</dc:date>
    </item>
    <item>
      <title>Re: Raid Group Info via PowerShell</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Raid-Group-Info-via-PowerShell/m-p/25440#M1163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is exactly what I was looking for.&amp;nbsp; Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Dec 2013 15:01:16 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Raid-Group-Info-via-PowerShell/m-p/25440#M1163</guid>
      <dc:creator>SeanLuce</dc:creator>
      <dc:date>2013-12-12T15:01:16Z</dc:date>
    </item>
    <item>
      <title>Re: Raid Group Info via PowerShell</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Raid-Group-Info-via-PowerShell/m-p/98657#M4087</link>
      <description>&lt;P&gt;Hi Guys,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any idea how to do the same in cDot ?&lt;/P&gt;</description>
      <pubDate>Mon, 22 Dec 2014 05:48:37 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Raid-Group-Info-via-PowerShell/m-p/98657#M4087</guid>
      <dc:creator>tomers</dc:creator>
      <dc:date>2014-12-22T05:48:37Z</dc:date>
    </item>
  </channel>
</rss>

