ENUMERATING AD USERS¶
-
Enumerates AD users.
SharpView.exe Get-DomainUser -Identity gordon.stevens -Domain [DOMAIN]
-
Use filters to narrow down the user search.
SharpView.exe Get-DomainUser -Filter "samaccountname -like '*[USERNAME]*'" -Domain [DOMAIN]
-
List all users in the AD.
SharpView.exe Get-DomainUser -Domain [DOMAIN]
ENUMERATING AD GROUPS¶
-
Enumerates AD groups.
SharpView.exe Get-DomainGroup -Identity Administrators -Domain [DOMAIN]
-
Enumerate group membership.
SharpView.exe Get-DomainGroupMember -Identity Administrators -Domain [DOMAIN]
-
List all groups in the AD.
SharpView.exe Get-DomainGroup -Domain [DOMAIN]
ENUMERATING AD COMPUTERS¶
-
Enumerates AD computers.
SharpView.exe Get-DomainComputer -Identity "DC01" -Domain [DOMAIN]
-
Use filters to narrow down the computer search.
SharpView.exe Get-DomainComputer -Filter "operatingsystem -like '*Server*'" -Domain [DOMAIN]
-
List all computers in the AD.
SharpView.exe Get-DomainComputer -Domain [DOMAIN]
ENUMERATING AD OBJECTS¶
-
Performs generic searches for any AD objects.
SharpView.exe Get-DomainObject -Filter "whenchanged -gt 2024-02-28T12:00:00" -Domain [DOMAIN]
-
List all AD objects.
SharpView.exe Get-DomainObject -Domain [DOMAIN]
ENUMERATING DOMAINS¶
-
Retrieve additional information about the specific domain.
SharpView.exe Get-Domain -Domain [DOMAIN]
-
Retrieve information about organizational units.
SharpView.exe Get-DomainOU -Domain [DOMAIN]
ENUMERATING GROUP POLICY OBJECTS (GPOS)¶
- Retrieve information about Group Policy Objects (GPOs) within the domain.
SharpView.exe Get-DomainGPO -Domain [DOMAIN]
ENUMERATING TRUSTS¶
- Retrieve information about domain trusts.
SharpView.exe Get-DomainTrust -Domain [DOMAIN]
ENUMERATING DOMAIN CONTROLLERS¶
- Retrieve information about domain controllers.
SharpView.exe Get-DomainController -Domain [DOMAIN]