Hi
I am running the command to count all of my AD objects
The question is, why when running the command after adding a user, it does not get updated in the following command:
Get-ADObject -Filter {name -like '*'} -SearchBase 'CN=Schema,CN=Configuration,DC=Fabrikam,DC=local' -ResultSetSize $null | Measure-ObjectWhile if running the following command there is an update
Get-ADObject -Filter {name -like '*'} -SearchBase 'DC=Fabrikam,DC=local' -ResultSetSize $null | Measure-Object
Thanks
Itamar