Active directory enum
创建于:2026年4月6日
使用 GPT-5.4 Thinking 回答 Chat01
创建于:2026年4月6日
使用 GPT-5.4 Thinking 回答 Chat01
Active directory enum
If you mean Active Directory enumeration, that is the process of safely inventorying an AD environment: domain info, DCs, users, groups, computers, OUs, GPOs, trusts, and permissions.
For an authorized admin/audit workflow, a safe read-only starting set is:
powershellGet-ADDomain Get-ADForest Get-ADDomainController -Filter * Get-ADUser -Filter * -Properties Enabled,LastLogonDate Get-ADGroup -Filter * Get-ADComputer -Filter * -Properties OperatingSystem Get-ADOrganizationalUnit -Filter * Get-GPO -All
What you usually want to collect:
If your goal is defense, I can turn this into a clean AD audit checklist or a PowerShell script that exports the inventory to CSV.