VSSADMIN – Windows CMD Command
Notice: A non well formed numeric value encountered in /home/future4tech/public_html/wp-content/plugins/crayon-syntax-highlighter/crayon_formatter.class.php on line 118
Notice: A non well formed numeric value encountered in /home/future4tech/public_html/wp-content/plugins/crayon-syntax-highlighter/crayon_formatter.class.php on line 119
Display the current volume shadow copy backups and all installed shadow copy writers and providers.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
Syntax Add a volume shadow copy storage association: VSSADMIN add shadowstorage /for=ForVolumeSpec /on=OnVolumeSpec [/maxsize=MaxSizeSpec] Create a new volume shadow copy: VSSADMIN create shadow /for=ForVolumeSpec [/autoretry=MaxRetryMinutes] Delete volume shadow copies: VSSADMIN delete shadows /for=ForVolumeSpec [/oldest | /all | /shadow=ShadowID] [/quiet] Delete volume shadow copy storage associations: VSSADMIN delete shadowstorage /for=ForVolumeSpec [/on=OnVolumeSpec] [/quiet] List registered volume shadow copy providers: VSSADMIN list providers List existing volume shadow copies: VSSADMIN list shadows [/for=ForVolumeSpec] [/shadow=ShadowID] List all shadow copy storage associations on the system: VSSADMIN list shadowstorage {/for=ForVolumeSpec | /on=OnVolumeSpec} List volumes that are eligible for shadow copies: VSSADMIN list volumes List all subscribed volume shadow copy writers on the system: VSSADMIN list writers Resize the maximum size for a shadow copy storage association: VSSADMIN resize shadowstorage /for=ForVolumeSpec /on=OnVolumeSpec [/maxsize=MaxSizeSpec] ** Resizing the storage association may cause shadow copies to disappear. Key /all Delete all of the shadow copies for the specified volume. /autoretry=MaxRetryMinutes The maximum amount of time (in minutes) during which the vssadmin command will attempt to create the shadow copy, if another process is simultaneously attempting to create a shadow copy. /for=ForVolumeSpec The volume for which the shadow copy storage operation is intended. /on=OnVolumeSpec The volume to be used as storage for the volume that is defined in the /for parameter. /maxsize=MaxSizeSpec The max amount of storage space FOR the volume specified in /on. If MaxSizeSpec is not specified, there is no limit placed on the space to be used. If the max. number of shadow copy storage associations have already been made, an error is returned. MaxSizeSpec must be 300 MB or greater and it must be expressed in one of the following units: bytes, KB, MB, GB, TB, PB, or EB. These units can be abbreviated as B, K, M, G, T, P, and E, respectively. If no unit is specified, MaxSizeSpec uses bytes (B) by default. /oldest Delete only the oldest shadow copy. /shadow=ShadowID Delete the shadow copy specified by ShadowID. ShadowID To get the shadow copy ID, use the VSSADMIN list shadows command. When you type a shadow copy ID, use the following format, where each X represents a hexadecimal character: XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX /quiet Suppress messages. |
To enable VSS on a volume. Right-click on the volume and select Properties > Shadow Copies. From here, you can then click Enable to create the first snapshot.
Shadow copies are exposed to PowerShell by a WMI class called Win32_ShadowCopy.
Examples:
Specify that for volume C, volume D is to be used for storage and the maximum size for storage space is to be 900 MB
VSSADMIN add shadowstorage /for=c: /on=d: /maxsize=900mb
Create a shadow copy of volume C
VSSADMIN create shadow /for=c:
Delete the oldest shadow copy of volume C:
VSSADMIN delete shadows /for=c: /oldest
Create a shadow copy with PowerShell [source]:
# get existing shadow copies
$shadow = get-wmiobject win32_shadowcopy
“There are {0} shadow copies on this sytem” -f $shadow.count “”
# get static method
$class=[WMICLASS]”root\cimv2:win32_shadowcopy”
# create a new shadow copy
“Creating a new shadow copy”
$class.create(“E:\”, “ClientAccessible”)
# Count again
$shadow = get-wmiobject win32_shadowcopy
“There are now {0} shadow copies on this sytem” -f $shadow.count
Create a shadow copy with a single line of PowerShell:
(get-wmiobject -list win32_shadowcopy).Create(‘E:\’,’ClientAccessible’)
Create a shadow copy with WMIC:
WMIC shadowcopy call create Volume=’E:\’