我希望为本地服务器运行 DNS 查找,选择主机名和 IP 地址并输出到文本文件。
[System.Net.Dns]::GetHostEntry('server1') |
Select-Object 'HostName', 'IPAddressToString' |
Out-File -Path 'c:\temp\DnsIpAddress.txt'
我可以访问HostName
但不能选择IPAddressToString
。IPAddressToString
如果我以这种方式将结果保存到变量中,我可以访问:
$result.AddressList.IpAddressToString
我可以Select-Object
用来选择hostname
和IPAddressToString
吗?或者我应该以另一种方式做到这一点?