Difference between revisions of "Generate Shadow Copy Backups (snapshot)"

From Tech-Wiki
Jump to: navigation, search
(Created page with "Category:Microsoft '''Back to Windows 10''' wmic shadowcopy call create Volume=C:\ or VSSADMIN create shadow /for=c:")
 
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:
 
'''[[Microsoft#Windows 10|Back to Windows 10]]'''
 
'''[[Microsoft#Windows 10|Back to Windows 10]]'''
  
wmic  shadowcopy call create Volume=C:\
+
Enable Shadow Copy (also called as "Previous Version") for your volume/disk. Then create a schedule task for either commands below:
  
or
+
wmic shadowcopy call create Volume=C:\
 +
 
 +
or on Windows Server (not 10/11):
  
 
  VSSADMIN create shadow /for=c:
 
  VSSADMIN create shadow /for=c:
 +
 +
Another variant using Powershell:
 +
 +
(gwmi -list win32_shadowcopy).Create('C:\','ClientAccessible')

Latest revision as of 20:07, 22 August 2023

Back to Windows 10

Enable Shadow Copy (also called as "Previous Version") for your volume/disk. Then create a schedule task for either commands below:

wmic shadowcopy call create Volume=C:\

or on Windows Server (not 10/11):

VSSADMIN create shadow /for=c:

Another variant using Powershell:

(gwmi -list win32_shadowcopy).Create('C:\','ClientAccessible')