Find the default age (in hours) for Kerberos tickets in the domain
Find users and groups with SeEnableDelegationPrivilege on the DC (or DCs)
Find what GPOs are applied to the DC
Enumerates GPOs for workstations and servers
# import PowerViewImport-Module ..\PowerView.ps1# domain Kerberos settings$Settings =Get-DomainPolicyData-Policy 'Domain'$Settings.KerberosPolicy# who has SeEnableDelegationPrivilege over the DC$Settings =Get-DomainPolicyData-Policy 'DomainController'$Settings.PrivilegeRights# what GPOs are applied to the domain controller$DomainController = (Get-DomainController).NameGet-DomainGPO-ComputerIdentity $DomainController# enumerate all GptTmpl.inf settings for GPOs in the domainGet-DomainGPO|Get-DomainPolicyData# find any GPOs that modify local group memberships through GPOsGet-DomainGPOLocalGroup# to find what machines an "interesting" GPO applies toGet-DomainGPO WorkstationGPO |%{Get-DomainOU-GPLink $_.Name} |% {Get-DomainComputer-SearchBase $_.distinguishedname-Properties dnshostname}Get-DomainGPO ServerGPO |%{Get-DomainOU-GPLink $_.Name} |% {Get-DomainComputer-SearchBase $_.distinguishedname-Properties dnshostname}