Reputation: 22265
My Windows service application runs on workstations belonging to the Active Directory domain. Once in a while I get user questions about some features of my program not working. Upon further investigation it usually turns out that certain Group Policy Object (GPO) settings are to blame.
So I was thinking, is there a way to list all GPOs applied to a local/member workstation? (I can then store them in the log file and quickly refer to it later if the problem comes up.)
Upvotes: 0
Views: 4224
Reputation: 1
You can check it by simple windows command "gpresult".
Just open console and type gpresult /r /scope computer
and you can get your result.
Upvotes: 0
Reputation: 3684
The main problem is, that "group policy" is just a good name... it consists of many individual registry entries... the only way to see this is to dump all these indivudual registry entries...
A starting point might be:
Alternatively you can use the GPO API (which might be a better starting point):
Upvotes: 1