2018-05-24 16:57:55 +00:00
|
|
|
#Requires -Modules VagrantMessages
|
|
|
|
|
|
|
|
param(
|
2016-10-05 11:48:48 +00:00
|
|
|
[Parameter(Mandatory=$true)]
|
|
|
|
[string]$VmId,
|
|
|
|
[Parameter(Mandatory=$true)]
|
|
|
|
[string]$Path
|
|
|
|
)
|
|
|
|
|
2018-05-24 16:57:55 +00:00
|
|
|
$ErrorActionPreference = "Stop"
|
|
|
|
|
|
|
|
try {
|
|
|
|
$vm = Hyper-V\Get-VM -Id $VmId
|
|
|
|
$vm | Hyper-V\Export-VM -Path $Path
|
|
|
|
} catch {
|
2018-06-12 22:32:29 +00:00
|
|
|
Write-ErrorMessage "Failed to export VM: ${PSItem}"
|
2018-05-24 16:57:55 +00:00
|
|
|
exit 1
|
|
|
|
}
|
2016-10-05 11:48:48 +00:00
|
|
|
|
|
|
|
# Prepare directory structure for box import
|
2018-05-24 16:57:55 +00:00
|
|
|
try {
|
|
|
|
$name = $vm.Name
|
|
|
|
Move-Item $Path/$name/* $Path
|
|
|
|
Remove-Item -Path $Path/Snapshots -Force -Recurse
|
|
|
|
Remove-Item -Path $Path/$name -Force
|
|
|
|
} catch {
|
2018-06-12 22:32:29 +00:00
|
|
|
Write-ErrorMessage "Failed to format exported box: ${PSItem}"
|
2018-05-24 16:57:55 +00:00
|
|
|
exit 1
|
|
|
|
}
|