strComputer = "." Set objWMIService = GetObject _ ("winmgmts:\" & strComputer & "\root\rsop\computer")
Set colItems = objWMIService.ExecQuery _ ("Select * from RSOP_SecuritySettingNumeric")
For Each objItem in colItems
If objItem.KeyName="MaximumPasswordAge" Then
objItem.Properties_("Setting").Value=90
objItem.SetInfo End If Wscript.Echo "Key Name: " & objItem.KeyName & "Setting: " & objItem.Setting
Next Wscript.Quit
It is throwing error at objItem.SetInfo which means set is not allowed on these properties..isn't it. if I remove this line, it is not enforcing the password age change in GPO... PLEASE HELP!!! ALL I FIND ON EVERYWHERE IS TO ENUMERATE, but I need setting the password policies....