询问者
管理员如何通过注册表限制普通域账户的桌面权限

问题
-
公司管理员如何才能通过注册表批量限制普通域账户的桌面权限?
1,禁用桌面开始菜单(只保留注销和关机)。
2,禁用所有情况下的鼠标右键功能。
3,禁用桌面的右下角所有设置功能和开始菜单的设置功能。
- 已编辑 spiderman08 2019年9月4日 14:27
全部回复
-
你好,
有关于你的需求,我做了一些测试。
对于禁用开始菜单,我暂时还没找到好的方法,对于禁用鼠标右键,控制面板和Windows设置,我们可以使用如下注册表键值实现:
2,禁用所有情况下的鼠标右键功能。
Windows资源管理器的上下文菜单(包括桌面)
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v "NoViewContextMenu" /d 1 /t REG_DWORD /f
任务栏的上下文菜单
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v "NoTrayContextMenu" /d 1 /t REG_DWORD /f
开始菜单的拖放上下文菜单
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v "NoChangeStartMenu" /d 1 /t REG_DWORD /f
IE的上下文菜单
reg add "HKEY_CURRENT_USER\Software\Policies\Microsoft\Internet Explorer\Restrictions" /v "NoBrowserContextMenu" /d 1 /t REG_DWORD /f
3,禁用桌面的右下角所有设置功能和开始菜单的设置功能。
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v "NoControlPanel" /d 1 /t REG_DWORD /f
Best Regards,
William
Please remember to mark the replies as answers if they help.
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.- 已建议为答案 William LiangMicrosoft contingent staff 2019年9月9日 8:15
-
你好,
你的问题解决了吗?
如果您使用我们的解决方案解决了它,请“标记为答复”以帮助其他社区成员快速找到有用的回复。
如果您使用自己的解决方案解决问题,请在此处分享您的经验和解决方案。对于有类似问题的其他社区成员来说,这将非常有益。
如果不是,请回复并告诉我们当前的情况,以便提供进一步的帮助。
此致,
William
Please remember to mark the replies as answers if they help.
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.- 已建议为答案 William LiangMicrosoft contingent staff 2019年9月25日 2:48
-
你好,
为了更加优化论坛资源,请将对你有帮助的回复点击“标记为答复”。
如果你依然还需要更多的帮助,你也可以随时回帖咨询。
感谢你的理解和支持。
Best Regards,
William
Please remember to mark the replies as answers if they help.
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.