Hello Randy Klein,
From your description, the Volume Shadow Copy Service (VSS) itself is starting correctly, but any application that attempts to invoke it fails immediately after recent patching. The fact that this is reproducible across two different sites after the same update strongly suggests a regression introduced by the patch rather than a local corruption. Re‑registering the DLLs and restarting the services would normally clear a broken COM registration, but since the service looks healthy and still fails when called, the problem is deeper in the provider or writer stack.
The first thing to check is the VSS event log under Applications and Services Logs > Microsoft > Windows > VSS > Operational. Look for errors such as Event ID 12289 or Event ID 13, which will tell you whether the failure is coming from a provider (for example, the Microsoft Software Shadow Copy Provider) or from a writer. If you see 0x80042306 or 0x80042318, those codes indicate that the provider is failing to initialize.
Given that you had to modify the registry to bypass CBT issues to get the servers to boot, it is possible that the patch re‑enabled or altered the Changed Block Tracking (CBT) driver or filter, which is interfering with VSS. VSS relies on filter drivers to snapshot volumes, and if CBT is mis‑registered or corrupted, VSS calls will fail even though the service itself appears healthy. Check HKLM\SYSTEM\CurrentControlSet\Services\VSS\Providers and confirm that only the expected Microsoft provider is listed. If you see orphaned or third‑party CBT entries, remove them carefully after confirming with the vendor.
If the VSS writers themselves are failing, run vssadmin list writers from an elevated prompt. If all writers show errors or are missing, the patch has broken the COM registration for VSS. In that case, the supported remediation is to apply the latest cumulative update for your Windows Server build, as Microsoft typically issues hotfixes for VSS regressions in subsequent updates. If you are already on the latest patch level, the only reliable workaround is to uninstall the problematic update and roll back to the previous build where VSS was functioning.
I hope you've found something useful here. If it helps you get more insight into the issue, it's appreciated to accept the answer. Should you have more questions, feel free to leave a message. Have a nice day!
Domic Vo.