Computer Enumeration
This details various different techniques and methods required to enumerate domain computers within Active Directory.
Windows
PowerView
Native PowerShell
PS C:\> ([ADSISearcher]"ObjectClass=computer").FindAll()
Here we search for any computers with a name like
DES*
PS C:\> ([ADSISearcher]"(&(objectClass=computer)(name=DES*))").FindAll()
Here we find any computers named
CFS01
PS C:\> ([ADSISearcher]"(&(objectClass=computer)(name=CFS01))").FindAll()
Last modified 2yr ago