List Resultant Set of Policy GPOs in Windows
You can use any of the VBScript programs below in ActiveXperts Network Monitor. Click here for an explanation about how to include scripts in ActiveXperts Network Monitor.
List Resultant Set of Policy GPOs in Windows using VBScript, WMI and LDAPExample(s)
strComputer = "." Set objWMIService = GetObject _ ("winmgmts:\\" & strComputer & "\root\rsop\computer") Set colItems = objWMIService.ExecQuery("Select * from RSOP_GPO") For Each objItem in colItems Wscript.Echo "Name: " & objItem.Name Wscript.Echo "GUID Name: " & objItem.GUIDName Wscript.Echo "ID: " & objItem.ID Wscript.Echo "Access Denied: " & objItem.AccessDenied Wscript.Echo "Enabled: " & objItem.Enabled Wscript.Echo "File System path: " & objItem.FileSystemPath Wscript.Echo "Filter Allowed: " & objItem.FilterAllowed Wscript.Echo "Filter ID: " & objItem.FilterId Wscript.Echo "Version: " & objItem.Version Wscript.Echo Next