解决Windows无法访问默认共享问题

公司多台Win2008服务器,需要共享备份。已经在一台上加入了凭证,但是共享的时候依然要求输入密码。测试了一下,输入密码也无法进入,应该是对端策略的问题。网上查了下,发现加这条注册表就可以解决。

PS:其实对于企业来说,开启共享,尤其是默认共享,在安全上还是有很大的不安全因素的。


注册表名称:

enable_administrative_shares.reg

注册表正文:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System]
"LocalAccountTokenFilterPolicy"=dword:00000001

----------------------------------------------------------------------------------------------------------------------------------------------

如果想手动加,可以参考下面操作。

Follow these steps to manually edit the registry:

        1. Click Start, type regedit in the Start Search box, and then click regedit.exe in the Programs list.
        2. Locate and then click the following registry subkey:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\system

        3. On the Edit menu, point to New, and then click DWORD Value.
        4. Type LocalAccountTokenFilterPolicy for the name of the DWORD, and then press ENTER.
        5. Right-click LocalAccountTokenFilterPolicy, and then click Modify.
        6. In the Value data box, type 1, and then click OK.
        7. Exit Registry Editor.


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章