Unable to Connect to VM via Hyper-V Manager (WINDOWS SRV 2022)

Christopher Migeot 0 Reputation points
2025-11-06T10:14:52.6+00:00

Error-HYPER-V.jpg

Hello everyone,

I've big issue with my hyper-v on windows server 2022.

I can't connect anymore with the console en Hyper-v manager.

All my VM are working as expected but it's not possible to use the VMCompute anymore to deploy new VM.

I've tried a lot of trick without any positive result. I've also tried with WAC with the same result.

I've seen this error in event logs but i can't start and stop Vmcompute services as expected, too.

Fault services: vmcompute.exe

Exception: 0xc0000194

Defective module: vmcompute.exe.

Already tried to disable Firewall and AV and so on.

Did you have an idea of what could happen?

Many thanks.

Windows for business | Windows Client for IT Pros | Storage high availability | Virtualization and Hyper-V
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. JasonTranNguyen-3858 1,240 Reputation points Independent Advisor
    2025-11-06T10:59:46.44+00:00

    Hi Christopher Migeot,

    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 😊.

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.