Link to home
Start Free TrialLog in
Avatar of gmollineau
gmollineauFlag for Trinidad and Tobago

asked on

Getting a script

hi,

I am looking for a script to produce a report in csv format that shows first name, surname, display name, UPN and user logon name from a windows 2003 active directory domain server. Any help would be appreciated.
Avatar of Will Szymkowski
Will Szymkowski
Flag of Canada image

Do you have powershell installed on this domain controller?

See below link for Powershell cmdlets against  2003 domain controllers.
http://blogs.technet.com/b/ashleymcglone/archive/2011/03/17/step-by-step-how-to-use-active-directory-powershell-cmdlets-against-2003-domain-controllers.aspx

Will.
Install Quest PowerGui and then run the following command from PowerGui Script Editor (that is if you do not have any Win2K8 DC/AD Web Services running):

Get-QADUser | ft givenname, sn, dn, samaccountname -AutoSize | out-file c:\directory\filename.csv
Avatar of gmollineau

ASKER

Hi,

I installed the Quest PowerGui, however how do i do the Get-QADUser?
You need to have powershell installed on the server for this to work. PowerGUI runs on top of powershell, which is why it is not working as expected.

Will.
ASKER CERTIFIED SOLUTION
Avatar of Mohammed Khawaja
Mohammed Khawaja
Flag of Canada 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