Gets the list of VNX file storage pools used by the VNX storage system to provision shared folder pools.
Syntax
Get-EmcVNXFileStoragePool [[-ID] <String>] [-StorageSystem <ICelerraStorageSystem>] [-Silent] [<CommonParameters>]
Parameters
-ID <String>
Attributes: Optional, Position: 1
Specifies the storage pool name or ID. Wildcards are permitted. It is a positional parameter (position = 1).
-StorageSystem <ICelerraStorageSystem>
Attributes: Optional, Position: named
Specifies the ESI Storage System object, which you can add to ESI by using the Get-EmcStorageSystemCredential and Connect-EmcSystem cmdlets. You can get a storage system object by using the Get-EmcStorageSystem cmdlet. The storage system for this cmdlet must be a VNX storage system.
-Silent <SwitchParameter>
Attributes: Optional, Position: named
Turns off all the informational and verbose messages. However, it still displays errors.
<CommonParameters>
This cmdlet supports these common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, and OutVariable. Type get-help about_commonparameters for more details.
Examples
-------------- Example 1 --------------
C:\PS>Get-EmcVNXFileStoragePool
This example gets the list of all VNX file storage pools.
-------------- Example 2 --------------
C:\PS>$s = Get-EmcStorageSystem
C:\PS>Get-EmcVNXFileStoragePool -StorageSystem $s[0]
This example gets the list of VNX file storage pools from the specified storage system.