PowerShell Logo Small

Get-StorageNode



This is the built-in help made by Microsoft for the command 'Get-StorageNode', in PowerShell version 5 - as retrieved from Windows version 'Microsoft Windows Server 2012 R2 Standard' PowerShell help files on 2016-06-23.

For PowerShell version 3 and up, where you have Update-Help, this command was run just before creating the web pages from the help files.

SYNOPSIS

Gets storage nodes.

SYNTAX


Get-StorageNode [-AsJob] [-CimSession <CimSession[]>] [-Name <String[]>] [-OperationalStatus <OperationalStatus[]>] [-ThrottleLimit <Int32>] [<CommonParameters>]
Get-StorageNode [-AsJob] [-CimSession <CimSession[]>] [-OperationalStatus <OperationalStatus[]>] [-StoragePool <CimInstance>] [-ThrottleLimit <Int32>] [<CommonParameters>]
Get-StorageNode [-AsJob] [-CimSession <CimSession[]>] [-OperationalStatus <OperationalStatus[]>] [-StorageEnclosure <CimInstance>] [-ThrottleLimit <Int32>]
[<CommonParameters>]
Get-StorageNode [-AsJob] [-CimSession <CimSession[]>] [-OperationalStatus <OperationalStatus[]>] [-ThrottleLimit <Int32>] [-VirtualDisk <CimInstance>] [<CommonParameters>]
Get-StorageNode [-AsJob] [-CimSession <CimSession[]>] [-OperationalStatus <OperationalStatus[]>] [-PhysicalDisk <CimInstance>] [-ThrottleLimit <Int32>] [<CommonParameters>]
Get-StorageNode [-AsJob] [-CimSession <CimSession[]>] [-OperationalStatus <OperationalStatus[]>] [-ThrottleLimit <Int32>] [-UniqueId <String[]>] [<CommonParameters>]
Get-StorageNode [-AsJob] [-CimSession <CimSession[]>] [-OperationalStatus <OperationalStatus[]>] [-StorageSubSystem <CimInstance>] [-ThrottleLimit <Int32>]
[<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Get-StorageNode cmdlet gets objects that represent storage nodes and their operational statuses. Use this cmdlet to get storage nodes to pass to the Get-PhysicalDisk
cmdlet or the Get-VirtualDisk cmdlet to get the physical or virtual disks connected to storage nodes. Use the current cmdlet with the Get-StoragePool cmdlet to get the
storage pools that storage nodes own.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/?LinkID=206775
Get-PhysicalDisk
Get-StoragePool
Get-StorageSubSystem
Get-VirtualDisk

REMARKS

<

Examples


Example 1: Get a storage node

PS C:\>Get-StorageNode -Name "StorageNode21"



This command gets a storage node named StorageNode21.




Example 2: Get the operational statuses for all physical disks

PS C:\>Get-PhysicalDisk | Get-StorageNode



This command uses the Get-PhysicalDisk cmdlet to obtain all the physical disks, and then passes them to the current cmdlet by using the pipeline operator. The cmdlet gets
the storage nodes and operational statuses for the physical disks.