Hello,
How could I get an easy overview of virtual attributes currently in use. I mean return a list of attributes with values if there are any on any user object in AD.
I would like to have something similar to pulling regular AD extension attributes. For example:
$adUsers = Get-adUser -Filter * -Properties extensionattribute1
$adUsers | group extensionattribute1
This code will help me understand how many objects have extensionattribute1 populated and what values are there.
How can I get similar output for virtual attributes?
Also how can I get a list of all virtual attributes currently available and if they have been renamed? I want to access that information through scripting.
Viewing extension attributes in AD can be done like this:
get-aduser username -pro * | fl