Active Directory(Altiris)

Hello ,

i have a problem we're using a service call Altiris(HelpDesk system) we exported all user from AD into service desk unfortunately all my users did not come over about half .

if someone know Altiris an had this problem let me know

2)what i would like to do is export 2 user record from AD with all the Attribute . I know AD has a lot of Attr. but it would help so i can compare each record to see what field is missing from one of the ones that didn't  upload in to servicedesk.

June 24th, 2015 3:41pm

Hi,

You can use the following PowerShell script which will export all the required attributes. To run this script your DC should have Windows 2008 R2 with AD PowerShell module feature enabled.

Get-Aduser -Filter * -Properties *|select name,@{n="memberof";e={[string]$_.memberof}},SamAccountName,PasswordExpired,PasswordLastSet,LastLogonDate,Enabled,DistinguishedName,DisplayName,GivenName,SurName|export-csv C:\output.csv

Free Windows Admin Tool Kit Click here and download it now
June 24th, 2015 11:29pm

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics