How to programatically update group policy with C++?
Asked Answered
G

1

2

I am managing group policies programmatically, but I am not able to find any function which updates group policy programmatically.

i.e. gpupdate /force

Gelation answered 14/4, 2015 at 9:40 Comment(2)
It wouldn't surprise me if there is no such API; group policy is fairly high-level. You may have no choice but to resort to launching gpupdate.exe as a subprocess.Cavort
Looks like gpupdate uses an undocumented API function, ForceSyncFgPolicy.Cavort
G
2

I have found the answer,

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.

Gelation answered 12/2, 2016 at 14:55 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.