Removes or destroys the shared folder pool for a specified VNX storage system.
Syntax
Remove-EmcVNXSharedFolderPool [-SharedFolderPool] <StoragePool> [-Force] [-Silent] [-WhatIf] [-Confirm] [<CommonParameters>]
Parameters
-SharedFolderPool <StoragePool>
Attributes: Required, Position: 1
Specifies the ESI shared folder pool object, which you can get by using the ESI storage system object or by using the Get-EmcStoragePool cmdlet. It is a positional parameter (position = 1).
-Force <SwitchParameter>
Attributes: Optional, Position: named
Allows the cmdlet to continue without asking for user confirmation.
-Silent <SwitchParameter>
Attributes: Optional, Position: named
Turns off all the informational and verbose messages. However, it still displays errors.
-WhatIf <SwitchParameter>
Attributes: Optional, Position: named
Shows what would happen if the cmdlet runs. The cmdlet is not run.
-Confirm <SwitchParameter>
Attributes: Optional, Position: named
Prompts you for confirmation before executing the command.
<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>$p = Get-EmcStoragePool -StorageSystem $s[0] -PoolType File -ID *TestStoragePool*
C;\PS>Remove-EmcVNXSharedFolderPool -SharedFolderPool $p
This example removes or destroys the specified shared folder pool.