In Windows Server 2016 when we take system state backup. It fails with an error.
Backup Failed to Complete. The System writer is not found in the backup
Solution –
Make sure System Writer is missing
Start – Cmd
vss admin list writers
(Working Machine)
Try Restarting Below services
- COM+ Event System
- COM+ System Application
- Distributed Transactions Coordinator
- Microsoft Software Shadow Copy Provider
- Volume Shadow Copy service
- Block Level Backup Engine Service
Check System writer is visible. if not.
Start Command Prompt Run as Administrator
Takeown /f %windir%\winsxs\temp\PendingRenames /a icacls %windir%\winsxs\temp\PendingRenames /grant "NT AUTHORITY\SYSTEM:(RX)" icacls %windir%\winsxs\temp\PendingRenames /grant "NT Service\trustedinstaller:(F)" icacls %windir%\winsxs\temp\PendingRenames /grant BUILTIN\Users:(RX) Takeown /f %windir%\winsxs\filemaps\* /a icacls %windir%\winsxs\filemaps\*.* /grant "NT AUTHORITY\SYSTEM:(RX)" icacls %windir%\winsxs\filemaps\*.* /grant "NT Service\trustedinstaller:(F)" icacls %windir%\winsxs\filemaps\*.* /grant BUILTIN\Users:(RX) net stop cryptsvc net start cryptsvc
Now system writer should be visible.
I ran the command lines stated in the post. But I still can not see the “System Writer” in the vssadmin list writers command. All other writers are present.