How to determine Computer Account Password Age (in Active Directory)
Copy and Paste this script to an empry Computer.Account.vbs file
On Error Resume Next
Set rs = CreateObject("ADODB.Recordset")
Set objRootDSE = GetObject("LDAP://RootDSE")
strDNSDomain = objRootDSE.Get("defaultNamingContext")
rs.Open "<LDAP://" & strDNSDomain & ">;(objectClass=computer);name,distinguishedName", "provider = ADsDSOObject"
strMachineList = ""
Do Until rs.EOF
Set objComputer = GetObject("LDAP://" & rs.Fields("distinguishedName") & "")
dtmValue = obj...