无法使用etc \ hosts中的主机别名访问远程路径

时间:2019-11-29 13:39:46

标签: windows powershell credentials

在Windows Server 2016上,我在etc\hosts文件中像这样输入:

txe-build-svr 10.10.10.10

当我尝试访问该主机上的共享时,我会这样做
get-childitem -path \\10.10.10.10\c$
 可以

我做什么的时候
get-childitem -path \\txe-build-svr\c$
我收到错误

Get-ChildItem : Cannot find path '\\txe-build-svr\c$' because it does not exist.
At line:1 char:1
+ Get-ChildItem -Path \\txe-build-svr\c$
+ CategoryInfo          : ObjectNotFound: (\\txe-build-svr\c$:String) [Get-ChildItem], 
ItemNotFoundException
+ FullyQualifiedErrorId : PathNotFound,Microsoft.PowerShell.Commands.GetChildItemCommand

etc\hosts条目确实起作用,并且别名已解析为正确的IP地址。

0 个答案:

没有答案