在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地址。