Hello Bayou Shrimp,
When a Windows Update crashes a Server 2019 system, the first step is to determine whether the failure occurred during patch installation, during reboot, or after the system came back online. If the server is stuck in a boot loop or fails to load after updates, you should boot into the Windows Recovery Environment and use the “Uninstall Updates” option under Troubleshoot > Advanced Options. This allows you to roll back either the latest quality update or the latest feature update. That is the supported way to reverse a problematic patch.
If the system does boot but services are broken, check the update history with Get-WindowsUpdateLog or via Control Panel > Programs and Features > Installed Updates. Identify the KB number that was applied just before the crash. You can then remove it with wusa /uninstall /kb:<KBID> /quiet /norestart or via PowerShell Uninstall-WindowsUpdate -KBArticleID <KBID>. Always confirm that the update is indeed the cause before removing it.
For mitigation going forward, you should configure a proper servicing strategy. On Server 2019, use WSUS or Windows Update for Business to stage updates in a test environment before applying them to production. Also enable automatic system restore points or maintain regular VM snapshots if the server is virtualized. That way, you can roll back quickly without relying solely on uninstalling updates.
If the crash was severe enough that the OS partition is corrupted, you may need to perform a repair install using Server 2019 media. Boot from ISO, choose “Repair your computer,” and run sfc /scannow or DISM /RestoreHealth against the offline image. This can repair system files damaged by a failed update.
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.