在Powershell 3.0 Windows 7中是否有一种简单的方法可以将本地计算机的ipv4地址转换为变量?
最佳答案
这是另一种解决方案:
$env:HostIP = (
Get-NetIPConfiguration |
Where-Object {
$_.IPv4DefaultGateway -ne $null -and
$_.NetAdapter.Status -ne "Disconnected"
}
).IPv4Address.IPAddress
关于windows - Powershell将ipv4地址转换为变量,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27277701/