如何以编程方式设置软件限制策略

发布于 2024-08-18 06:56:17 字数 86 浏览 6 评论 0原文

我想使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

青巷忧颜 2024-08-25 06:56:17

您可以使用 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

花桑 2024-08-25 06:56:17

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.

如何视而不见 2024-08-25 06:56:17

该函数需要 3 条信息:

  • ADsPath 到要修改 A 模式控制值的 GPO 对象的路径,0=未
  • 中的实际值。
  • 配置,1=启用,2=禁用 要写入表示模式控制值的 Key

The function requires 3 pieces of information:

  • ADsPath to the GPO object to modify A mode control values, 0=Not
  • Configured, 1=Enabled, 2=Disabled The actual value to write in the
  • Key that represents the mode control value.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文