如何以编程方式设置软件限制策略
我想使用 C# 以编程方式添加软件限制策略。 例如:添加附加规则以禁止 Paint.exe 运行。
不幸的是我不知道如何在 C# 中实现这一点
I would like to add software restriction policies programmatically using c#.
For example: Add and additional rule to disallows paint.exe to run.
Unfortunately I don't have the slightest idea how I could achieve this in c#
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 RSoP WMI 类 WMICodeCreator 到更新组策略。
您还可以直接执行 gpupdate.exe 或调整注册表。
这些 xml 策略可能很有用:
http://www.microsoft.com/downloads/details.aspx?FamilyID=18c90c80-8b0a-4906-a4f5-ff24cc2030fb&displaylang=en
you can use the RSoP WMI classes with WMICodeCreator to update the group policy.
you could also exec gpupdate.exe directly or tweak the registry.
these xml policies can be useful:
http://www.microsoft.com/downloads/details.aspx?FamilyID=18c90c80-8b0a-4906-a4f5-ff24cc2030fb&displaylang=en
IGroupPolicyObject - 用于以编程方式创建/更新策略的 Windows API。
我建议您浏览此链接,它们将深入解释如何以编程方式访问组策略。
以编程方式使用组策略对象
以编程方式更新 Windows 中的本地策略
如果您有任何其他疑问,请询问。
IGroupPolicyObject - Windows API to create/update policies programmatically.
I would recommend you to go through this links, they will explain in deep about accessing Group Policies programmatically.
Working with Group Policy Objects Programmatically
Programmatically updating local policy in Windows
If you have any other query, do ask.
该函数需要 3 条信息:
The function requires 3 pieces of information: