以编程方式在 Windows 中获取本地化的用户友好组策略名称
请查看我的计算机上的本地组策略设置的屏幕截图 (gpedit.msc):
是有什么方法可以从 C++ 程序(或者可能使用 WMI)检索用户友好(本地化)的组策略名称(在上面的屏幕截图中圈出)?
Please take a look at this screenshot (gpedit.msc) of local group policy settings on my computer:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据管理组策略 ADMX 文件分步指南 您可以在 W2K8 服务器上的文件
C:\Windows\PolicyDefinitions\Desktop.admx
中找到以下内容的 XML 描述:上面的截图。您可以将此文件的描述和帮助标记与包含特定于语言的设置的基于 XML 的 ADM 文件C:\Windows\PolicyDefinitions\Desktop.adml
链接。编辑
要在 C++ 中解析 XML,我使用这两个库:
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 withC:\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 :