There are numerous tools available for enumerating Active Directory environments. For the OSCP, I recommend picking one or two tools, getting familiar with those tools in the lab environment, and sticking with that tool through the exam. After you earned the OSCP you can explore additional tools and expand your Active Directory knowledge. For my OSCP journey my AD enumeration tool of choice was PowerView.ps1.
Bloodhound
pip install bloodhound
bloodhound-python -u user -p pass -d domain -c All
PowerView
To use PowerView we first need to modify the powershell execution policy to enable script execution.
Set-ExecutionPolicy -ExecutionPolicy (RemoteSigned) or (Bypass)
Next, dot source the script.
. .\script.ps1 (be sure to include the space between ellipses)
Find-LocalAdminAccess -Verbose : Finds all machines on the domain where the current user has local admin access
Find-DomainUserLocation -Verbose
Find-DomainUserLocation -UserGroupIdentity : Find computers where a domain admin (or specified user/group) has sessions