Delete an undeletable checkpoint in Hyper-V
Delete an undeletable checkpoint in Hyper-V using PowerShell.
John Savill
March 25, 2015
1 Min Read
Q. I have a VM snapshot in Hyper-V that I cannot delete using Hyper-V Manager, how can I delete it?
A. If you run the command Get-VMSnapshot -VMName you may see a snapshot that is of type Recovery and in Hyper-V Manager there is no option to delete it. Additionally if you try and manually run Remove-VMSnapshot -VMName no error is returned but the snapshot is not removed. The solution is to run the following:
Get-VMSnapshot -VMName | Remove-VMSnapshot
If there are multiple snapshots you can add the -Name parameter to the Get-VMSnapshot.
About the Author
Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.
You May Also Like