vagrant/plugins/providers/hyperv/scripts/create_snapshot.ps1

25 lines
560 B
PowerShell
Raw Normal View History

2018-05-24 16:57:55 +00:00
#Requires -Modules VagrantMessages
param(
2016-03-05 16:41:18 +00:00
[Parameter(Mandatory=$true)]
[string]$VmId,
[string]$SnapName
)
2018-05-24 16:57:55 +00:00
$ErrorActionPreference = "Stop"
try {
$VM = Hyper-V\Get-VM -Id $VmId
$ChkPnt = $VM.CheckpointType
if($ChkPnt -eq "Disabled") {
Hyper-V\Set-VM -VM $VM -CheckpointType "Standard"
}
2018-05-24 16:57:55 +00:00
Hyper-V\Checkpoint-VM $VM -SnapshotName $SnapName
if($ChkPnt -eq "Disabled") {
Hyper-V\Set-VM -VM $VM -CheckpointType "Disabled"
}
2018-05-24 16:57:55 +00:00
} catch {
Write-ErrorMessage "Failed to create snapshot: ${PSItem}"
2018-05-24 16:57:55 +00:00
exit 1
}