Hi Mike Malko,
The error code 0x80073701 translates to ERROR_SXS_ASSEMBLY_MISSING, which indicates your server's WinSxS directory is missing required component payloads to complete the update process. You should never manually alter permissions on the WinSxS folder, as this will permanently damage the servicing stack. To repair the component store properly, you need to use the Deployment Image Servicing and Management tool alongside a known-good source file. Mount a Windows Server 2019 ISO that matches your current OS edition, open an elevated command prompt, and run a RestoreHealth command specifying the install.wim file within the mounted ISO's sources folder as your target source. This approach forces Windows to bypass the standard update channels and pull uncorrupted system files directly from the original installation media.
If the cumulative update installation still fails after running the repair tool, you will need to identify the exact missing system component by analyzing your CBS log file. Navigate to the C:\Windows\Logs\CBS directory and open the CBS.log text file immediately after the update fails. Search the document for the 0x80073701 error code or the missing manifest phrase to find the specific package identifier the system is struggling to locate. Once identified, you can often download that missing prerequisite update directly from the Microsoft Update Catalog and install it manually to bridge the gap in your component store.
Should the corruption prove completely unrepairable by DISM and manual package installation, you must consider the safest path forward for a Domain Controller. While in-place OS upgrades are technically supported by Microsoft, they carry unnecessary risk for critical Active Directory infrastructure when servicing stack corruption is already present. The established enterprise best practice is to deploy a fresh Windows Server 2019 virtual machine, promote it to a Domain Controller within your existing domain, transfer all Flexible Single Master Operations roles to the new machine, and finally perform a graceful demotion of the corrupted server.
Hope this answer brought you some useful information. If it did, please hit “accept answer”. Should you have any questions, feel free to leave a comment.
VP