如何在使用 PowerShell 时向 Windows 主机文件添加条目?
如需将内容添加到主机文件,我们首先需要使用Get-Content 命令检索内容,然后需要在添加条目后将内容设置为主机文件。如下所示。我们需要向其添加全局条目。
示例
$file = "C:\Windows\System32\drivers\etc\hosts" $hostfile = Get-Content $file $hostfile += "8.8.8.8 Google.com" Set-Content -Path $file -Value $hostfile -Force
一旦检查主机文件条目 "8.8.8.8 Google.com"将添加到主机文件。
如需在远程计算机上添加条目,您只需要将该文件位置指向远程服务器的主机文件,其余内容将保持不变。
示例
$file = \Comptuter1\C$\Windows\System32\drivers\etc\hosts $hostfile = Get-Content $file $hostfile += "8.8.8.8 Google.com" Set-Content -Path $file -Value $hostfile -Force
广告