我正在尝试更改我的计算机的 DNS 缓存最大生存时间。
它不在任何域中,我是计算机上的完全管理员 - 内置管理员帐户+禁用的组策略“以管理员批准模式运行所有管理员”。
我已安装 RSAT DNS 工具:
'Get-WindowsCapability -Name RSAT.dns* -online' 结果
当我尝试时Set-DnsServerCache -MaxTtl 2.00:00:00
出现以下错误:
Set-DnsServerCache: Failed to connect to DNS server <computer name>. Please check if the server name is valid and is reachable.
我认为这可能是某种远程问题,所以我也这样做了:
$s = New-PSSession
Invoke-Command -command {Import-Module dnsserver} -Session $s
Import-PSSession -Session $s -Module dnsserver -Prefix RemoteDNS
Set-RemoteDNSDnsServerCache -MaxTtl 2.00:00:00
同样的错误。
我在网上找不到与该错误相关的任何结果。