以编程方式在 Windows 中获取本地化的用户友好组策略名称

发布于 2024-12-20 05:10:34 字数 180 浏览 1 评论 0原文

请查看我的计算机上的本地组策略设置的屏幕截图 (gpedit.msc):

在此处输入图像描述

是有什么方法可以从 C++ 程序(或者可能使用 WMI)检索用户友好(本地化)的组策略名称(在上面的屏幕截图中圈出)?

Please take a look at this screenshot (gpedit.msc) of local group policy settings on my computer:

enter image description here

Is there any way to retrieve user-friendly (localized) group policy names (circled in the screenshot above) from a C++ program (or maybe using WMI)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

水晶透心 2024-12-27 05:10:34

根据管理组策略 ADMX 文件分步指南 您可以在 W2K8 服务器上的文件 C:\Windows\PolicyDefinitions\Desktop.admx 中找到以下内容的 XML 描述:上面的截图。您可以将此文件的描述和帮助标记与包含特定于语言的设置的基于 XML 的 ADM 文件 C:\Windows\PolicyDefinitions\Desktop.adml 链接。


编辑

要在 C++ 中解析 XML,我使用这两个库:

  1. XMLLite
  2. TinyXML

According to Managing Group Policy ADMX Files Step-by-Step Guide you can find, on your W2K8 server, in the file C:\Windows\PolicyDefinitions\Desktop.admx an XML description of what is circled in the screenshot above. You can link the description and help tag of this file with C:\Windows\PolicyDefinitions\Desktop.adml an XML-based ADM files that contain language-specific settings.


Edited

To parse XML in C++ I use to use these two libraries :

  1. XMLLite
  2. TinyXML
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文