The root cause is that Windows 7 doesn't have Get-NetIPAddress ( see: https://stackoverflow.com/questions/19529442/gather-ip-address-information ) but the change was to try and solve the bug that the VPN IP addresses aren't visible detailed here: https://support.microsoft.com/en-us/kb/2549091 Resolved using the 2nd solution from http://serverfault.com/questions/145259/powershell-win32-networkadapterconfiguration-not-seeing-ppp-adapter
22 lines
617 B
PowerShell
22 lines
617 B
PowerShell
$ErrorAction = "Stop"
|
|
|
|
# Find all of the NICsq
|
|
$nics = [System.Net.NetworkInformation.NetworkInterface]::GetAllNetworkInterfaces()
|
|
|
|
# Save the IP addresses somewhere
|
|
$nic_ip_addresses = @()
|
|
|
|
foreach ($nic in $nics) {
|
|
$nic_ip_addresses += $nic.GetIPProperties().UnicastAddresses | Where-Object {
|
|
($_.Address.IPAddressToString -ne "127.0.0.1") -and ($_.Address.IPAddressToString -ne "::1")
|
|
} | Select -ExpandProperty Address
|
|
}
|
|
|
|
$nic_ip_addresses = $nic_ip_addresses | Sort-Object $_.AddressFamily
|
|
|
|
$result = @{
|
|
ip_addresses = $nic_ip_addresses.IPAddressToString
|
|
}
|
|
|
|
Write-Output $(ConvertTo-Json $result)
|