mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-03 20:39:27 -05:00
27 lines
527 B
PowerShell
27 lines
527 B
PowerShell
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
#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}"
|
|
exit 1
|
|
}
|
|
|
|
try {
|
|
Hyper-V\Set-VM -VM $VM -NewVMName $VMName
|
|
} catch {
|
|
Write-ErrorMessage "Failed to assign new VM name ${VMName}: ${PSItem}"
|
|
exit 1
|
|
}
|