How to Stop a Stuck Hyper-V Virtual Machine.
It is stuck in the Stopping 또는 달리기 state and doesn’t give any Turn Off, Shutdown, 구하다, Pause or Reset options.
One way it’s possible to kill off that stuck virtual machine is to open Task Manger and end the task responsible for that machine. 안타깝게도, it’s not quite that simple because the Virtual Machine Worker Process which is responsible for running the virtual machine appears numerous times, once for each running guest machine!
방법 1
If you have a small number of VMs:
- 열려 있는 작업 관리자 and view the Details 탭;
- You will see many vmwp.exe running processes with the Username column including the machineGUIDs;
- Browse to the location where the virtual machines are stored and open the folder of the virtual machine which is currently hung. From here we can find the machine configuration file and make note of theGUID for that machine;
- Now we know which GUID relates to the virtual machine that we are looking to stop. Jump back to 작업 관리자, right-click on the correct process, 그리고 End Process.
메모: This process should only be used as a last resort as it could cause corruption of the virtual machine!
방법 2
If you have a bunch of running VMs. The fastest way is to find the needed VM GUID with the PowerShell command.
Get-VM <vmname> | fl *
Now we know which GUID relates to the virtual machine that we are looking to stop. Jump back to 작업 관리자, right-click on the correct process, 그리고 End Process.
This command pulls a list of virtual machine names and GUIDs then compares that to a list of GUIDs in the Command Line of the processes running and returns virtual machine names with the associated Process ID (~ 아니다 VM GUID).
Get-WmiObject Win32_Process -Filter "Name like '%vmwp%'" | %{$vm=get-vm -id $_.CommandLine.split(" ")[1];"$($_.processID)`t$($vm.name)"}
방법 3
사용 Sysinternals Process Explorer.