Virtualization is not available - showing in Claude Desktop - Cowork

OKADA 0 Reputation points
2026-07-01T10:17:15.9266667+00:00

User's image

I'm on a VM , Standard B4as V2 ( 4 - 16 GB )
I installed Claude Desktop but Cowork is not running well with this error.

Anyone can help?

Azure Virtual Desktop
Azure Virtual Desktop

A Microsoft desktop and app virtualization service that runs on Azure. Previously known as Windows Virtual Desktop.


1 answer

Sort by: Most helpful
  1. Senthil kumar 2,080 Reputation points
    2026-07-01T10:26:12.0866667+00:00

    Hi @OKADA

    Directly we cannot to access BIOS so, enable nested virtualization

    from Azure CLI locally or cloud shell.

    az vm update \
      -g YourResourceGroup \
      -n YourVMName \
      --set "additionalCapabilities.enableNestedVirtualization=true"
    

    Stop the VM

    Start the VM (not restart — full stop/start is required)

    After this, Windows inside the VM will detect virtualization.

    from powershell

    Inside the VM:

    Enable Hyper‑V

      Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V -All
    

    Enable virtualization platform

      Enable-WindowsOptionalFeature -Online -FeatureName VirtualMachinePlatform
    

    Ensure Hyper‑V is active

      bcdedit /set hypervisorlaunchtype auto
    
    
    

    Thanks.

    Was this answer helpful?

    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.