How to Clean Up After a Failed Hyper-V Checkpoint

Argomenti vari di carattere sistemistico
Post Reply
daniele
Posts: 333
Joined: 04 Mar 2009, 13:59

How to Clean Up After a Failed Hyper-V Checkpoint

Post 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.
Post Reply