Removes a virtual disk image (VDI) from a XenServer storage repository.
Syntax
Remove-EmcXenServerVirtualDiskImage -VirtualDiskImage <VirtualDiskImage> [-Force] [-Silent] [-WhatIf] [-Confirm] [<CommonParameters>]
Parameters
-VirtualDiskImage <VirtualDiskImage>
Attributes: Required, Position: named
Specifies the virtual disk image (VDI) to remove.
-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>$vdi = Get-EmcXenServerVirtualDiskImage -ID testVDI -Silent
C:\PS>Remove-EmcXenServerVirtualDiskImage -VirtualDiskImage $vdi
This example removes the virtual disk image from the storage repository and deletes it.