The error code 0xc0000194 typically points to a failed initialization or missing component within the VM compute stack.
Here are a few steps I recommend trying:
First, open Services.msc, locate Hyper-V Host Compute Service, and ensure the startup type is set to Automatic. Try starting it manually.
If it fails, open an elevated PowerShell window and run:
sfc /scannow
DISM /Online /Cleanup-Image /RestoreHealth
These commands will check for and repair corrupted system files.
Verify that all Hyper-V-related Windows features are enabled by running:
dism /online /enable-feature /featurename:Microsoft-Hyper-V-All /all
Check the folder C:\ProgramData\Microsoft\Windows\Hyper-V for permission issues — ensure SYSTEM and Administrators have full control.
If the service still won’t start, you may need to re-register VMCompute using:
net stop vmms
net stop vmcompute
del "%ProgramData%\Microsoft\Windows\Hyper-V" /F /S /Q
net start vmms
If everything looks correct and the issue persists, consider performing a repair installation of Windows Server 2022 while keeping roles and data intact.
If this helps fix the problem, please click “Accept Answer” so others can benefit too 😊.