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

28 lines
654 B
PowerShell
Raw Normal View History

2014-02-26 19:12:24 +00:00
Param(
[Parameter(Mandatory=$true)]
[string]$VmId
)
# Include the following modules
2014-02-26 19:12:24 +00:00
$Dir = Split-Path $script:MyInvocation.MyCommand.Path
. ([System.IO.Path]::Combine($Dir, "utils\write_messages.ps1"))
$ip_address = ""
2014-02-26 19:12:24 +00:00
$vm = Get-VM -Id $VmId -ErrorAction "Stop"
$networks = Get-VMNetworkAdapter -VM $vm
foreach ($network in $networks) {
if ($network.IpAddresses.Length -gt 0) {
$ip_address = $network.IpAddresses[0]
if (-Not ([string]::IsNullOrEmpty($ip_address))) {
# We found our IP address!
break
}
}
}
2014-02-26 19:12:24 +00:00
$resultHash = @{
ip = "$ip_address"
}
2014-02-26 19:12:24 +00:00
$result = ConvertTo-Json $resultHash
Write-Output-Message $result