Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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....

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.