Find Old/Unused Computer Accounts In An OU Or Domain
Written by Cheyenne Harden
Ever said to yourself, "I'm not sure what computer accounts in this OU are valid"! Well, with this script you can see when the last time a computer(in an OU) logged in.
----------COPY EVERYTHING BELOW THIS LINE----------
'This script will shut down all computers on the domain 'Created by C.E. Harden June 13 2006
On error resume next
Dim objADO Dim objContainer Dim objChild Dim User
Wscript.Echo "The output will be written to C:\oldComputers.txt" set objADO = GetObject("LDAP://ou=workstations,ou=liverpool,dc=contoso,dc=local") set WshShell = WScript.CreateObject("WScript.Shell") Set fso = CreateObject("Scripting.FileSystemObject") fso.DeleteFile ("C:\oldComputers.txt") set txtStream = fso.OpenTextFile("C:\oldComputers.txt", 8, True) txtStream.WriteLine vbCrLf set objContainer = objADO
For each objChild in objContainer user = MID(objChild.Name,4) If DateDiff ("d",objChild.LastLogin, Now) > 180 then txtStream.WriteLine user & " ---> " & DateDiff ("d",objChild.LastLogin, Now)_ & " Days since last login." & vbCrLf Next