Syntax
Set-VDisk [-VDisk] <VDisk[]> [-Name <String>] [-Inflate] [-CapacityGB <Decimal>] [-WhatIf] [-Confirm] [<CommonParameters>]Related Commands
Online versionDetailed Description
This cmdlet renames, inflates, or extends the size of the specified VDisk object. If multiple options are specified, they are performed in the following order.Parameters
Return Type
The modified VDisk objectsNotes
Examples
-------------- Example 1 --------------
Set-VDisk -VDisk $vDisk -Name 'NewName' -CapacityGB 2
Renames $vDisk VDisk object to 'NewName' and sets its capacity to 2 GB.
-------------- Example 2 --------------
Set-VDisk -VDisk $vDisk -Inflate
Inflates the $vDisk VDisk object.