Hi Bruce,
If Azure Backup is failing only for one Server 2019 VM while others succeed, the first thing to check is the VSS writers on that VM.
Run
vssadmin list writersand confirm that the System Writer and COM+ Writer are stable and not in a failed state.
If they show errors, restart the
COM+ Event SystemandVolume Shadow Copyservices, then retry the backup.
Verify that the Azure Backup Agent is up to date and that the
C:\Windows\System32\wbengine.exeprocess can run without access issues.
Corrupted or missing components in the Windows Server Backup feature can cause system state backup failures, so ensure the feature is installed via ServerManagerCmd -install Windows-Server-Backup and check for Event IDs 517 or 12289 in the Application log, which usually point to VSS or provider issues. If all writers are healthy and the agent is current, the issue is likely specific to that VM’s OS state, and you may need to re-register VSS with regsvr32 /i %windir%\system32\eventcls.dll and related DLLs. If the problem persists after these checks, it’s best to open a support case with Microsoft since system state backup failures can stem from deeper OS corruption that requires official remediation.
Harry.