How do I export a list of inactive computers or the the computers that failed ping?
Announcement
Collapse
No announcement yet.
Inactive Computer
Collapse
X
-
Re: Inactive Computer
Right-click on the Computers object in the left window and choose Query Active Directory->Computers(Detailed). The PwdLastSet field works fairly well for this because periodically computer accounts are forced to reset the password they use to communicate with the domain. Anything outside of a normal range (>30 days possibly) can be looked at further. We typically recommend that you first Disable suspect computers, then a week or so later actually remove them from AD.
-
Re: Inactive Computer
I use this tool what I wrote to find all Inactive Computers in my Domain
******
cmd /x /c "dsquery computer domainroot -d DOMAINNAME -inactive 8 | dsget computer -dn -desc >C:\inactive.txt"
******
Change the DOMAINNAME to your own Domain name, the 8 refers the number of weeks the computer hasn't changed it's password. Run the tool at the Domain level name in Hyena.
Comment
Comment