Fix for 'VM Service Not Running' error in Cowork on Windows 11

Diagnosing and fixing the virtualization error
A user on r/ClaudeAI reported encountering a 'VM Service Not Running' error in Cowork on Windows 11 Home, particularly when tinkering with MCPs. The error appeared and disappeared randomly. After checking that Hyper-V was installed and running, they discovered the root cause: the hypervisor wasn't set to launch at boot.
Diagnostic command
To check if this is the issue, run this PowerShell command:
bcdedit /enum | findstr -i hypervisor
If the output shows hypervisorlaunchtype Off, that's the problem. The hypervisor needs to be active at the boot level, not just running as a service after Windows loads.
Fix command
To resolve this, run:
bcdedit /set hypervisorlaunchtype auto
After running this command, perform a full restart of your system and try Cowork again. The user confirmed this fixed their issue after multiple troubleshooting attempts.
📖 Read the full source: r/ClaudeAI
👀 See Also

5 Core OpenClaw Capabilities Available Without Installing Skills
OpenClaw's base installation can handle file operations, shell commands, web fetching, scheduled tasks, and multi-step workflows without additional skills, reducing token costs and setup complexity.

You Can Run OpenClaw: Three Paths to an AI Agent (No Terminal Required)
OpenClaw's one-liner installer, managed platforms, and local ollama models remove the technical barrier. Pick your path and start with boring tasks.

OpenClaw CLI Performance Triage Checklist
A Reddit user shares a six-step checklist to diagnose slow OpenClaw CLI commands, including commands to measure latency, monitor system resources, check gateway logs, and isolate configuration issues.

Claude Code Skills vs. Custom Agents: A Mental Model Based on Task Consistency
A Reddit user clarifies the distinction between Claude Code skills and custom agents: skills execute the same steps every time, while custom agents require reasoning and adaptation. The post also covers parallel subagents, delegation, hooks, and building blocks.