Link to home
Start Free TrialLog in
Avatar of beardog1113
beardog1113Flag for China

asked on

Quest shell get user list with employeeID

hello experts
i need export a user list with username and employeeID, could you tell me how to do it via Get-QADuser command?
i don't know how to write "select" parameter.

thank you
Avatar of Sarang Tinguria
Sarang Tinguria
Flag of India image

Chris has a great GUI tool for all theese stuffs

Cjwdev | AD Info - Active Directory Reporting www.cjwdev.co.uk/Software/ADReportingTool/Info.html

Or

AdFind by joe but CLI
www.joeware.net/freetools/tools/adfind/index.htm
Avatar of beardog1113

ASKER

hello, thanks for your suggestion, but i don't want install so many application on my DC.

any ideas on under using quest command shell?

thanks
AdInfo can be installed on any workstation can be used even without Admin privilledges
ASKER CERTIFIED SOLUTION
Avatar of Shabarinath TR
Shabarinath TR
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
If its for a single user
Get-QADUser -SizeLimit 0 -Identity username -IncludedProperties employeeid |select name, employeeid

Open in new window


Cheers !

Shaba
perfect