Hello,
I need to find out which User have which Properties in AD.
For example: User A has Property A and B.
Actually I'm using:
Get-ADUser -Filter {name -like "*"} -Properties MemberOf | fl
and it works but not like I need it. It gives me too much information.
I only need the Name and the proberty, also it would be good to filter if the account is enable or not.
It also should create a excle sheet if this is possible. (I'm new to PowerShell).
Thanks for your help