Disable automatic checkpoints prior to VM removal

This commit is contained in:
Chris Roberts 2018-11-13 13:04:11 -08:00
parent b2e682b0e3
commit 0ea4dcdc6e
1 changed files with 3 additions and 0 deletions

View File

@ -9,6 +9,9 @@ $ErrorActionPreference = "Stop"
try {
$VM = Hyper-V\Get-VM -Id $VmId
if((Get-Command Hyper-V\Set-VM).Parameters["AutomaticCheckpointsEnabled"] -ne $null) {
Hyper-V\Set-VM -VM $VM -AutomaticCheckpointsEnabled $false -ErrorAction SilentlyContinue
}
Hyper-V\Remove-VM $VM -Force
} catch {
Write-ErrorMessage "Failed to delete VM: ${PSItem}"