Zliczanie kont w AD

Uruchamiamy konsolę Powershell-a i wydajemy polecenia

Import-Module ActiveDirectory
$allDisabldAccounts = (Search-ADAccount -AccountDisabled).count
Write-Output "Ilość kont wyłączonych:`t`t $allDisabldAccounts"
$all = (get-aduser -Filter *).count
$allactive = $all - $allDisabldAccounts
Write-Output "Ilość kont aktywnych:`t`t $allactive"
Write-Output "Ilość wszystkich kont:`t`t`t $all"