Skip to main content

Multipass Service Stuck on Windows

In some cases the Multipass service on Windows can get stuck, preventing you from starting or stopping it normally. Follow these steps to recover:
1
Check for Stuck Processes
2
Open Task Manager (Ctrl+Shift+Esc), look for any multipassd.exe or related Multipass processes, and end them manually.
3
Force Kill the Service
4
Open PowerShell as Administrator and find the Multipass service PID:
5
Get-WmiObject win32_service | Where-Object { $_.Name -eq "Multipass" } | Select-Object ProcessId
Stop-Process -Id <PID> -Force
6
Restart the Multipass Service
7
Restart-Service Multipass
8
Reboot if Still Stuck
9
If the service remains stuck after the steps above, reboot your computer to fully clear the stuck state.

Build docs developers (and LLMs) love