Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Modify a Local User Account So It Never ExpiresContent of Modify a Local User Account So It Never Expires.vbsMD5 Hash: BB584831D6A3DB6EFF4718090BCBEAF1 |
||
' Description: Binds to the local user account on a computer named atl-win2k-01, and configures the account so that it never expires.
Const ADS_UF_DONT_EXPIRE_PASSWD = &h10000 strComputer = "atl-win2k-01" Set objUser = GetObject("WinNT://" & strComputer & "/kenmyer") objUserFlags = objUser.Get("UserFlags") objPasswordExpirationFlag = objUserFlags OR ADS_UF_DONT_EXPIRE_PASSWD objUser.Put "userFlags", objPasswordExpirationFlag objUser.SetInfo | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |