What I Have
The "path" of a specific policy like the following
Computer Configuration\Policies\Windows Settings\Security Settings\Account
Policies\Password Policy\Enforce password history
I can navigate the tree into the Group Policy Mgt tool and with the previous path reach the desired policy.
What I want
Reach the same result from Powershell or other scripting language.
Ideal is a function that takes as input
the previous path and returns as output
the value (or notDefined) for the specific policy.
Does something like that exist?
Many GPO Policies can easily retrieved in the registry, especially those from Administrative Templates (have a look in the .admx files in C:\Windows\PolicyDefinitions). However, some Windows Settings are more tricky to discover, as the one you want to get. The full PowerShell version will be :
However, I strongly recommend you to not modify registry security (if you don't, you can't get this property this way).
To avoid this, you can use a mix between cmd and PowerShell :
or more readeable :
As you can see in the first way, when you have the registry value, it is easy to get mostly all of the policies (without modifying security) :
If you want only the value :
or
Add some explanations, this is a part of FileSys.admx (as an example, there are many other .admx files) :
valueName="NtfsDisableCompression"
is for the registry valueclass="Machine"
is for HKLM (User for HKCU)key="System\CurrentControlSet\Policies"
is for the path in the machine or user registrySo, you can read it with
An error will be flushed if the policy is not configured
If the parameter you want to check is outside the scope of a GPO or is defined manually, if you need to know the value to request, it will be the same syntax, except the
-Path
parameter will not contains aPolicies
key. Here an example for checking if a proxy is enabled :