- User ID
- 1
- Joined
- 7 Jan 2019
- Messages
- 995
- Reaction score
- 46
- Points
- 28
Here's the simplest way to set up a shadow copy of a drive is to use the wmic tool from PowerShell.
Shadow copies created in this way are somewhat different from classic recovery points. Windows won’t be able to use them for System Restore. That’s because the traditional restore point will not be created when the above command is executed.
- Right-click the Start button and select Windows Terminal (Admin); on Windows 10, choose PowerShell (Admin) instead.
- Type and run the following command:
wmic shadowcopy call create Volume=C:\
- The system will now generate snapshots for the drive or folder (including its subfolders), don't shut down or restart your computer for the next 15-20 minutes. You can close the Windows Terminal.
Shadow copies created in this way are somewhat different from classic recovery points. Windows won’t be able to use them for System Restore. That’s because the traditional restore point will not be created when the above command is executed.