Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Enumerating Resultant Set of Policy Security Settings -- BooleanContent of Enumerating Resultant Set of Policy Security Settings -- Boolean.vbsMD5 Hash: 6D9BC68CFC6891C64DC00FD06CC65DFF |
||
' Description: Returns information about account policy settings (such as password policy settings and account lockout policy settings) assigned by using Group Policy.
strComputer = "." Set objWMIService = GetObject _ ("winmgmts:\\" & strComputer & "\root\rsop\computer") Set colItems = objWMIService.ExecQuery _ ("Select * from RSOP_SecuritySettingBoolean") For Each objItem in colItems Wscript.Echo "Key Name: " & objItem.KeyName Wscript.Echo "Precedence: " & objItem.Precedence Wscript.Echo "Setting: " & objItem.Setting Wscript.Echo Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |