2018-05-24 16:57:55 +00:00
|
|
|
#Requires -Modules VagrantMessages
|
|
|
|
|
|
|
|
param(
|
2014-02-16 19:42:20 +00:00
|
|
|
[Parameter(Mandatory=$true)]
|
|
|
|
[string]$VmId
|
|
|
|
)
|
|
|
|
|
2018-05-24 16:57:55 +00:00
|
|
|
$ErrorActionPreference = "Stop"
|
|
|
|
|
|
|
|
try {
|
|
|
|
$VM = Hyper-V\Get-VM -Id $VmId
|
2018-11-13 21:04:11 +00:00
|
|
|
if((Get-Command Hyper-V\Set-VM).Parameters["AutomaticCheckpointsEnabled"] -ne $null) {
|
|
|
|
Hyper-V\Set-VM -VM $VM -AutomaticCheckpointsEnabled $false -ErrorAction SilentlyContinue
|
|
|
|
}
|
2018-05-24 16:57:55 +00:00
|
|
|
Hyper-V\Remove-VM $VM -Force
|
|
|
|
} catch {
|
2018-06-12 22:32:29 +00:00
|
|
|
Write-ErrorMessage "Failed to delete VM: ${PSItem}"
|
2018-05-24 16:57:55 +00:00
|
|
|
exit 1
|
|
|
|
}
|