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

25 lines
458 B
PowerShell
Raw Normal View History

2018-05-24 16:57:55 +00:00
#Requires -Modules VagrantMessages
param (
[parameter (Mandatory=$true)]
[Guid] $VMID,
[parameter (Mandatory=$true)]
[string] $VMName
)
$ErrorActionPreference = "Stop"
try {
$VM = Hyper-V\Get-VM -Id $VMID
} catch {
Write-ErrorMessage "Failed to locate VM: ${PSItem}"
2018-05-24 16:57:55 +00:00
exit 1
}
try {
Hyper-V\Set-VM -VM $VM -NewVMName $VMName
} catch {
Write-ErrorMessage "Failed to assign new VM name ${VMName}: ${PSItem}"
2018-05-24 16:57:55 +00:00
exit 1
}