Tag: Virtual Workspaces settings

  • Claude Cowork “Virtualization Not Available”

    Claude Cowork “Virtualization Not Available”

    ๐Ÿ”ง Windows Troubleshooting Series โ€” 2026 Edition

    ๐Ÿ–ฅ๏ธ Claude Cowork ๐Ÿ”ง WSL2 โš™๏ธ Virtual Machine Platform ๐Ÿ–ฅ๏ธ Hyper-V

    ๐Ÿ”ง Windows Virtualization Troubleshooting โ€” 2026 Edition ยท Real solutions from real user reports

    ๐Ÿ”ง Last Updated: May 2026 ยท Regularly Maintained โ€” covers Windows 11 24H2/25H2, KB5079473 crash fix, ISP TLS interception workaround, and Anthropic detection bugs
    โœ“ 2026 data โœ“ Regularly reviewed โœ“ Community-tested

    ๐Ÿ”ง WINDOWS VIRTUALIZATION TROUBLESHOOTING ยท 2026

    Fix: “Virtualization Not Available” Error on Claude Cowork (Windows) โ€” 2026 Ultimate Guide

    โš ๏ธ The Hard Truth: You installed Claude Cowork. Your virtualization is ENABLED in BIOS. Task Manager says “Virtualization: Enabled.” But Claude still shows: “Virtualization is not available โ€” Claude’s workspace requires Virtual Machine Platform, but the virtualization service isn’t responding.”

    Restarting doesn’t help. Reinstalling doesn’t help. You’ve tried everything. You’re not alone. In 2026, thousands of Windows users are facing this exact issue. This guide covers EVERY known fix โ€” including the ones Microsoft and Anthropic won’t tell you about.

    ๐Ÿ“Š The 2026 Virtualization Problem โ€” You’re Not Alone

    4,000+

    GitHub issues reported in 2026

    70%

    of Windows users affected by detection bugs [citation:3]

    5+

    critical bugs closed as “Not Planned” [citation:3]

    Bottom line: This is NOT always your fault. The Windows 11 24H2 update, KB5079473 crash, and Anthropic’s detection bugs are causing widespread issues. This guide addresses ALL of them.

    ๐Ÿ” Step 0: Quick Diagnostic Checklist

    Check 1: Verify Virtualization in BIOS

    Open Task Manager โ†’ Performance โ†’ CPU โ†’ Look for “Virtualization: Enabled”

    โœ… If Enabled โ†’ Proceed

    Check 2: Verify Feature Status (PowerShell as Admin)

    Get-WindowsOptionalFeature -Online -FeatureName VirtualMachinePlatform

    Check 3: Identify Your Windows Version

    Press Windows Key + R โ†’ type winver โ†’ Enter

    โš ๏ธ Note your Build Number (e.g., 26100.8037)

    โš ๏ธ METHOD 1: Fix the Detection Bug (Windows 11 24H2/25H2)

    For users on Windows 11 Version 24H2 (Build 26100+) or 25H2 where ALL virtualization features are ENABLED but Claude still shows the error

    ๐Ÿ“Œ Known Issue: This affects Windows 11 Pro 24H2 Build 26100.8037 specifically [citation:7]

    Users confirmed that Virtualization features are all “Enabled” via PowerShell, yet Claude Cowork refuses to detect them. This is a detection bug in Claude Cowork, not a Windows problem [citation:6].

    ๐Ÿ”ง Step 1: Verify ALL Virtualization Features Are Enabled (PowerShell as Admin)

    Get-WindowsOptionalFeature -Online -FeatureName VirtualMachinePlatform
    Get-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V-All
    Get-WindowsOptionalFeature -Online -FeatureName HypervisorPlatform

    All should show State: Enabled [citation:7].

    ๐Ÿ”„ Step 2: Toggle the Features (Reset Them)

    Disable-WindowsOptionalFeature -Online -FeatureName VirtualMachinePlatform
    Restart-Computer
    Enable-WindowsOptionalFeature -Online -FeatureName VirtualMachinePlatform
    Restart-Computer

    ๐Ÿ“Œ Community Note: Multiple users reported that this detection bug affects Windows 11 24H2. Some users found that after toggling the features and restarting TWICE, Claude Cowork finally detected virtualization [citation:7]. If this doesn’t work, proceed to Method 2.

    ๐ŸŒ METHOD 2: Fix ISP TLS Interception (DISM/WSL2 Stuck at 14%)

    For users in regions where ISPs use transparent CDN proxies that intercept Windows Update HTTPS traffic

    ๐Ÿ” The Problem

    When you run wsl --install or dism /enable-feature, the command hangs at 14% indefinitely. The cause: Your ISP is intercepting Windows Update TLS traffic and presenting a certificate that Windows does not trust [citation:1][citation:4].

    Subject: CN=*.cqloud.com
    Issuer: CN=global.qwilt.com

    โ†‘ This is NOT a Microsoft certificate. Qwilt is a transparent CDN caching system deployed by ISPs [citation:4].

    โœ… Solution: Switch Networks or Use a VPN

    1. Connect to a mobile hotspot (different ISP, no transparent proxy) [citation:4]
    2. Use a VPN to bypass the ISP interception
    3. Run the DISM command again after switching networks

    โœ… Verified Solution: Multiple users confirmed that switching to a mobile hotspot bypasses the ISP TLS interception and allows DISM to complete successfully [citation:4].

    ๐Ÿ’ก Permanent Fix: Report to Your ISP

    Contact your ISP and report that their transparent proxy is breaking Windows Update functionality. Request to be excluded from the CDN caching system [citation:4].

    ๐Ÿ’ป METHOD 3: Windows 11 Home Edition โ€” Virtual Machine Platform Not Available

    Virtual Machine Platform is NOT available on Windows Home editions [citation:5]

    โœ… Option A: Upgrade to Windows Pro

    The official solution. Use the built-in Windows Upgrade Assistant to upgrade to Pro. Cost varies but enables all virtualization features.

    โœ… Option B: Use Third-Party Virtualization

    VMware Workstation Player (free) or VirtualBox can run virtual machines on Windows Home. Install either, then restart and try Claude Cowork again [citation:5].

    ๐Ÿ”ง Check: Some Windows 11 Home Builds Support VMP

    Newer Windows 11 Home builds may support Virtual Machine Platform. Run the PowerShell command below to check:

    Get-WindowsOptionalFeature -Online -FeatureName VirtualMachinePlatform

    โš™๏ธ METHOD 4: Hyper-V Conflicts & Core Isolation

    For users with Hyper-V leftovers or Memory Integrity conflicts

    ๐Ÿ”„ Solution 1: Toggle Core Isolation (Memory Integrity)

    1. Open Windows Security โ†’ Device Security โ†’ Core Isolation
    2. Turn Memory Integrity OFF (temporarily)
    3. Restart your computer
    4. Enable Virtual Machine Platform
    5. Turn Memory Integrity back ON after successful enablement [citation:5]

    ๐Ÿ”„ Solution 2: Remove Leftover Hyper-V Components

    DISM /Online /Disable-Feature /FeatureName:Microsoft-Hyper-V-All

    Restart after this command completes, then try enabling Virtual Machine Platform again [citation:5].

    ๐Ÿ“‹ Check Required Services

    Press Win + R โ†’ type services.msc โ†’ ensure these services are running:

    • Hyper-V Host Compute Service (hns)
    • Virtual Machine Management Service (vmms)
    • Windows Hypervisor Platform

    โš ๏ธ METHOD 5: KB5079473 โ€” The March 2026 Update Causing System Crashes

    If your system started crashing after installing KB5079473 (Build 26100.8037), uninstall it immediately [citation:9]

    ๐Ÿšจ Known Symptoms of KB5079473

    • System freezes with no input response, followed by automatic restart
    • No blue screen โ€” no usable crash dump generated [citation:9]
    • WSL2 sessions crash at 4.6GB heap exhaustion [citation:3]
    • Memory leaks growing to 21GB+ during normal sessions [citation:3]
    • PowerShell spawned 38 times on WSL startup โ†’ 30-second input lag [citation:3]

    ๐Ÿ”ง How to Uninstall KB5079473

    1. Go to Settings โ†’ Windows Update โ†’ Update History โ†’ Uninstall Updates
    2. Find KB5079473 in the list
    3. Click Uninstall and restart your computer

    ๐Ÿ”’ How to Hide the Update (Prevent Reinstall)

    Download Microsoft’s “wushowhide.diagcab” troubleshooter to hide the problematic update and prevent it from reinstalling automatically.

    ๐Ÿ“Œ Note: Independent testing confirmed that the same hardware runs Linux with complete stability and zero crashes โ€” the issue is isolated to Windows after KB5079473 [citation:9].

    ๐Ÿ†• METHOD 6: New Virtual Workspaces Settings (Windows 11 25H2)

    Microsoft introduced a dedicated “Virtual Workspaces” settings page in Windows 11 Build 26100.7309 (24H2) and 26200.7309 (25H2) [citation:2][citation:8]

    ๐Ÿ“ New Location:

    Settings โ†’ System โ†’ Advanced โ†’ Virtual Workspaces [citation:8]

    ๐Ÿ”ง Steps:

    1. Open Settings (Windows Key + I)
    2. Go to System โ†’ Advanced
    3. Click on “Virtual Workspaces”
    4. Toggle “Virtual Machine Platform” to ON
    5. Restart your computer

    ๐Ÿ“Œ Note: Microsoft says this feature is rolling out gradually โ€” availability will vary by device and market. Some users may not see the option immediately, especially on hardware that does not support virtualization [citation:2].

    ๐Ÿ”ง BONUS: Component Store Corruption & Missing FOD Packages

    If DISM keeps failing with errors like 0x800f0950 or CBS_E_NO_OPTIONAL_CONTENT_FOUND_FOR_BUILD, the FOD packages may not be available for your Insider build [citation:4].

    ๐Ÿ” Check CBS.log for these errors:

    Microsoft-Hyper-V-Services-Package~...[build number]
    Microsoft-Windows-Subsystem-Linux-Package~...[build number]

    If these are missing, Microsoft may not have published FOD packages for your build yet [citation:4].

    ๐Ÿ”ง How to Check for Pending Package Installation

    DISM /Online /Get-Packages | findstr /i "Install Pending"

    ๐Ÿ”„ If Still Stuck: In-Place Upgrade

    Download the latest Windows ISO from Microsoft. Mount it and run setup.exe to perform an in-place upgrade. This preserves your apps and data while refreshing system files.

    โš ๏ธ Warning: Some users reported in-place upgrade failures with error 0x8007042B – 0x2000D (MIGRATE_DATA failure) related to component store corruption [citation:4].

    โš ๏ธ IMPORTANT: When It’s NOT Your Fault โ€” Anthropic’s Windows Bugs

    ๐Ÿ› Known Bugs Closed as “Not Planned” by Anthropic [citation:3]

    • VSCode extension freezes on file writes over 600 lines โ€” Closed as “not planned,” locked
    • KB5079473 causes heap exhaustion on WSL2 โ€” Sessions crash at 4.6GB
    • PowerShell spawned 38 times on every WSL startup causing 30-second input lag
    • Memory leak grows to 21GB+ during normal sessions with sub-agents
    • Path confusion between WSL and Windows causes silent failures

    ๐Ÿ“ข What to Do:

    If you’ve tried everything in this guide and Claude Cowork still doesn’t work, it may be a bug on Anthropic’s end, not your Windows configuration. Report the issue to Anthropic support with:

    • Your Windows version and build number
    • Screenshots of the error
    • Reference to GitHub issues #37421, #29532, and #39955 [citation:3][citation:6][citation:7]

    ๐Ÿ“Š Troubleshooting Flowchart โ€” Which Fix Should You Try?

    Step 1: Run Diagnostic Checklist โ†’ Detection bug (24H2)? โ†’ Method 1 โ†’ 25H2? โ†’ Virtual Workspaces
    DISM stuck at 14%? โ†’ ISP TLS interception โ†’ Method 2
    KB5079473 installed? โ†’ Uninstall it immediately โ†’ Method 5
    Windows Home Edition? โ†’ Upgrade to Pro or use third-party โ†’ Method 3

    โœ… Still stuck? Check the “When It’s NOT Your Fault” section โ€” it may be an Anthropic bug

    ๐Ÿ“š 2026 Sources & Citations

    • Microsoft Q&A (April 2026). wsl not working anymore, cannot install VirtualMachinePlatform โ€” DISM stuck at 14% [citation:1]
    • Windows Report (November 2025). KB5070311 adds Virtual Workspaces to Advanced Settings [citation:2]
    • GitHub Issue #39955 (March 2026). Windows platform treated as second-class โ€” multiple critical bugs closed as “not planned” [citation:3]
    • Microsoft Q&A (March 2026). WSL2 install stuck at 14% / VirtualMachinePlatform cannot be enabled โ€” ISP TLS interception root cause [citation:4]
    • Microsoft Q&A (February 2026). How to fix enabling of Virtual Machine Platform in Windows Home [citation:5]
    • GitHub Issue #29532 (February 2026). Cowork says “Virtualization is not available” โ€” but Hyper-V is alive and well [citation:6]
    • GitHub Issue #37421 (March 2026). Cowork “Virtualization is not available” on Windows 11 Pro 24H2 [citation:7]
    • Windows 11 Forum (August 2025). Enable or Disable Virtual Machine Platform in Windows 11 [citation:8]
    • Microsoft Q&A (April 2026). KB5079473 causing system freezes and forced restarts (Build 26100.8037) [citation:9]