从 C++ 读取并设置组策略设置程序
我有一台基于 Windows-NT 的独立计算机(未连接到任何网络),我希望能够通过 C++ 程序读取并随后设置组策略设置。
这是我手动执行的操作。以管理员身份运行 gpedit.msc,然后说我想阻止用户访问注册表。因此,在“本地组策略编辑器”
中,我将转到
用户配置->管理模板 ->系统-> “阻止访问注册表编辑工具”
并将其设置为启用
。
有什么方法可以从 C++ 程序中执行相同的操作吗?任何代码示例将不胜感激!
I have a standalone Windows-NT based machine (not connected to any network) and I want to be able to read and later set the Group Policy settings via a C++ program.
Here's what I would do manually. Run gpedit.msc as administrator, then say I want to prevent users from accessing registry. So in the "Local Group Policy Editor"
I'll go to
User Configuration -> Administrative Templates -> System -> "Prevent access to registry editing tools"
and set it to Enabled
.
Is there any way to do the same from a C++ program? Any code samples would be greatly appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用组策略 API 。
You can use the Group Policy API.