如何使用 PowerShell 更新 Windows 主机文件条目?
假设您要更新主机文件特定条目,我们在本地计算机中有以下主机文件。
示例
Get-Content $env:windir\system32\drivers\etc\hosts输出结果
# 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 8.8.8.8 Google.com
我们需要将google.com条目更新为IP地址4.4.4.4。
示例
$hostfile = "$env:windir\system32\drivers\etc\hosts" $file = Get-Content $hostfile $newfile = $file -replace "8.8.8.8 Google.com","4.4.4.4 Google.com" Set-Content -Value $newfile -Path $hostfile -Force
再次检查主机文件后,将显示一个新条目。
要更新远程计算机上的主机文件,只需更改$hostfile变量位置,其余内容将相同。
$hostfile = "\\RemoteServer\C$\Windows\system32\drivers\etc\hosts"