如何使用PowerShell读取Windows主机文件?
映射主机名和IP地址的Windows主机文件是纯文本文件。所以读取主机文件更简单。我们只需要使用Get-Content命令来检索文件内容。
通常,主机文件存储在位置c:\windows\System32\drivers\etc\。 如果操作系统安装在该位置。
或者你可以使用 $env:Windir来获取windows目录。
要获取文件内容,
示例
Get-Content $env:windir\system32\drivers\etc\hosts输出结果
# Additionally, comments (such as these) may be inserted on individual # lines or following the machine name denoted by a '#' symbol. # # For example: # # 102.54.94.97 rhino.acme.com # source server # 38.25.63.10 x.acme.com # x client host # localhost name resolution is handled within DNS itself. # 127.0.0.1 localhost # ::1 localhost
要从远程服务器获取主机文件,
Get-Content \\Computer1\c$\windows\system32\drivers\etc\hosts