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

SOUL.md rules drift in long AI agent sessions and how to fix it
SOUL.md rules work perfectly for the first 10-15 messages but start drifting around message 20-30 as conversation context overrides the initial system prompt. The solution is to use /new more aggressively to reset sessions before each distinct task.

From 88 to 100 PSI: Claude Code for Front-End Optimisation
A developer used Claude Code to boost PageSpeed Insights from 88 to 100 on mobile. Key tactics: responsive images with srcset, IntersectionObserver, font preload removal. Claude worked as a debugging partner, not a one-prompt fix.

How 40 Prompt Revisions Turned Claude AI Summaries Into a Product: A Tutoring Platform Case Study ($19K MRR)
A tutoring platform with $19K MRR iterated their Claude-generated session summary prompt 40+ times over 12 months. The journey from vague v1 to personalized v40 shows how prompt engineering transforms a feature into a product.

Building Claude Skills to Automate Cognitive Processes
Claude Code includes a built-in skill-creator that lets you build AI-powered skills by describing processes in natural language instead of writing code. The source describes creating a startup validation skill that reduced a 2-day manual process to 15 minutes.