Link to home
Start Free TrialLog in
Avatar of fireguy1125
fireguy1125

asked on

Get-QADGroupMember and Include other Attributes

I need to list all users of a Group, and include the Name, SamAccountName, EmployeeID, Manager

When I run Get-QADGroupMember "Group Name" | Name, SamAccountName, EmployeeID, Manager

It returns all values except the EmployeeID, how can I fix this?
Avatar of SubSun
SubSun
Flag of India image

You can try..
Get-QADGroupMember "Group Name" -IncludedProperties employeeID | Select Name, SamAccountName, EmployeeID, Manager

Open in new window

or
Get-QADGroupMember "Group Name" | Get-Qaduser -IncludedProperties employeeID | Select Name, SamAccountName, EmployeeID, Manager

Open in new window

Avatar of fireguy1125
fireguy1125

ASKER

Thanks - when listing the Manager, i see it returns the full DN value - is there any way to have the result so it is the name?
ASKER CERTIFIED SOLUTION
Avatar of SubSun
SubSun
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial