Disable automatic checkpoints prior to VM removal
This commit is contained in:
parent
b2e682b0e3
commit
0ea4dcdc6e
|
@ -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}"
|
||||
|
|
Loading…
Reference in New Issue