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

20 lines
391 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
)
2018-05-24 16:57:55 +00:00
$ErrorActionPreference = "Stop"
2016-03-05 16:41:18 +00:00
2018-05-24 16:57:55 +00:00
try {
$VM = Hyper-V\Get-VM -Id $VmId
$Snapshots = @(Hyper-V\Get-VMSnapshot $VM | Select-Object Name)
} catch {
Write-ErrorMessage "Failed to get snapshot list: ${PSItem}"
2018-05-24 16:57:55 +00:00
exit 1
}
$result = ConvertTo-json $Snapshots
Write-OutputMessage $result