Creates a new VNX CIFS shared folder pool object.
Syntax
New-EmcVNXSharedFolderPool -Pool <CelerraFileStoragePool> -Name <String> -Path <String> -Capacity <UInt64> [-CifsServiceNode <CifsStorageServiceNode>] [-Silent] [<CommonParameters>]
Parameters
-Pool <CelerraFileStoragePool>
Attributes: Required, Position: named
Specifies the ESI VNX file storage pool object, which you can get from the ESI storage system or by using the Get-EmcVNXFileStoragePool cmdlet.
-Name <String>
Attributes: Required, Position: named
Specifies the name of the shared folder pool.
-Path <String>
Attributes: Required, Position: named
Specifies the path of the shared folder pool.
-Capacity <UInt64>
Attributes: Required, Position: named
Specifies the capacity of the shared folder pool in bytes.
-CifsServiceNode <CifsStorageServiceNode>
Attributes: Optional, Position: named
Specifies the service node for the shared folder pool, which you can retrieve with the Get-EmcStorageServiceNode cmdlet.
-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>$s = Get-EmcStorageSystem
C:\PS>$n = Get-EmcStorageServiceNode -StorageSystem $s
C:\PS>$f = Get-EmcVNXFileStoragePool -StorageSystem $s[0]
C:\PS>New-EmcVNXSharedFolderPool -Pool $f -Name NewSharedFolderPool -Path NewSharedFolderPoolPath -Capacity 2147483648 -CifsServiceNode $n[0]
This example creates a VNX shared folder pool with the specified service node.