今天客户电脑Win10的系统,无法访问远端计算机共享,显示“错误代码0x80004005,找不到访问路径”,后通过修改注册表解决,附上方法步骤。
解决方法
- 开始->运行(快捷键“Win+R”),输入“regedit”后回车,打开注册表编辑器。
- 依次打开注册表如下键值
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters
- 找到“
AllowInsecureGuestAuth
”,如果没有,就新建一个DWORD(32)
项重命名为“AllowInsecureGuestAuth
”,设为“1
”,确定。 - 注销电脑后重新测试共享,不出意外可以正常访问了
附上注册表文件,以下内容保存为.reg格式导入亦可。
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters]
"AllowInsecureGuestAuth"=dword:00000001