Page 1 of 1

How to Clean Up After a Failed Hyper-V Checkpoint

Posted: 17 Mar 2024, 10:56
by daniele
References: https://www.altaro.com/hyper-v/clean-up ... heckpoint/

Spesso, PowerShell può di norma vedere e manipolare i checkpoints (snapshot / punti di controllo).

Modo più semplice:

Code: Select all

Remove-VMCheckpoint -VMName demovm
Puoi rimuovere tutti i checkpoint, di tutte le VM, con un solo comando:

Code: Select all

Remove-VMCheckpoint -VMName *
If the script completes without error, you can verify in Hyper-V Manager that it successfully removed all checkpoints. You can also use PowerShell:

Code: Select all

Get-VMCheckpoint
This clears up the majority of leftover checkpoints.