Fix for Claude Desktop Workspace VM Service Issue on Windows 11 Home

Workspace Feature Broken on Windows 11 Home
The workspace/Cowork feature in Claude Desktop has been failing on Windows 11 Home installations for months, displaying the error: "Failed to start Claude's workspace — VM service not running."
Root Cause
The CoworkVMService cannot verify its own executable path within the locked WindowsApps directory. Signature verification fails before the VM even starts.
Manual Fix via PowerShell
Run these commands in an Admin PowerShell session:
Stop-Service CoworkVMService -Force -ErrorAction SilentlyContinue
Copy-Item "C:\Program Files\WindowsApps\Claude_*_x64__*\app\resources\cowork-svc.exe" "$env:USERPROFILE\cowork-svc.exe"
& "$env:USERPROFILE\cowork-svc.exe"Keep the PowerShell window open, then launch Claude Desktop. The workspace should load successfully.
Automated Solution
A GitHub tool automates this process with auto-start at logon and auto-sync when Claude updates: https://github.com/tiranmoskovitch-dev/claude-vm-fix
This solution works on Windows Home edition without requiring an upgrade to Windows Pro.
📖 Read the full source: r/ClaudeAI
👀 See Also

Scaling Agentic Coding to 150+ PRs/Week: Lessons from $85K in Tokens at Lovable
Alexander Lebedev shares how he scaled from 20–30 PRs/week with one human to 150+ PRs/week with a swarm of AI agents, spending $85K in tokens since January. Key learnings: risk classification, AI review replacing human code review, and the challenge of preserving knowledge diffusion.

Evaluating Agent Skill Safety: Key Considerations Before Installation
Installing new agent skills can enhance functionality but also comes with risks. Learn how to evaluate the safety of these skills to protect your system.

Windows Cowork VM Service Error: Path Issue and Fix
A Windows Cowork installation issue causes the 'VM service not running' error every 10-20 minutes due to incorrect vm_bundles folder path in MSIX installs. The fix involves locating the correct folder and using a repair script.

Slash Claude costs 60x by offloading mechanical tasks to DeepSeek V4 Flash via MCP
A Reddit user cut Claude API spend 60x by routing file classification, JSON reformatting, and field extraction to DeepSeek V4 Flash via a simple MCP tool and a CLAUDE.md deny-list rule.