2018-05-24 16:57:55 +00:00
|
|
|
#Requires -Modules VagrantMessages
|
|
|
|
|
2015-09-22 10:35:55 +00:00
|
|
|
param (
|
2018-05-24 16:57:55 +00:00
|
|
|
[parameter (Mandatory=$true)]
|
|
|
|
[string]$VmId,
|
|
|
|
[parameter (Mandatory=$true)]
|
|
|
|
[string]$Mac
|
|
|
|
)
|
2015-09-22 10:35:55 +00:00
|
|
|
|
2018-05-24 16:57:55 +00:00
|
|
|
$ErrorActionPreference = "Stop"
|
2015-09-22 10:35:55 +00:00
|
|
|
|
|
|
|
try {
|
2018-05-24 16:57:55 +00:00
|
|
|
$vm = Hyper-V\Get-VM -Id $VmId
|
|
|
|
Hyper-V\Set-VMNetworkAdapter $vm -StaticMacAddress $Mac
|
|
|
|
} catch {
|
|
|
|
Write-Error-Message "Failed to set VM MAC address: ${PSItem}"
|
|
|
|
exit 1
|
2015-09-22 10:35:55 +00:00
|
|
|
}
|