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!

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

You can use the Group Policy API.

link|improve this answer
Thanks I found it myself while waiting... but they are so confusing. Any idea how to actually code what I want? – ahmd0 Nov 22 '11 at 8:38
No. Personally I would do it from PowerShell or vbscript if you are stuck on xp. – David Heffernan Nov 22 '11 at 8:47
OK then, any way to do it with WMI? – ahmd0 Nov 22 '11 at 9:29
feedback

what about this sample (which is completely written in C++)?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.