Environment
| IP | HOSTNAME | NOTE |
|---|---|---|
| 10.10.10.88 | win10_dqy | Lab host |
Reproduction Project
View the Volume Shadow Copy service status
Get-Service -Name VSS | Out-String;

Start the Volume Shadow Copy service
- PowerShell must be started with administrator privileges to start a Windows system service.
Start-Service -Name VSS;

Stop the Volume Shadow Copy service
Stop-Service -Name VSS;
