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
|
|
|
|
Hyper-V\Restore-VMSnapshot $VM -Name $SnapName -Confirm:$false
|
|
|
|
} catch {
|
2018-06-12 22:32:29 +00:00
|
|
|
Write-ErrorMessage "Failed to restore snapshot: ${PSItem}"
|
2018-05-24 16:57:55 +00:00
|
|
|
exit 1
|
|
|
|
}
|