본문 바로가기
powershell

Editing and exploiting powershell AD users

by kogoza 2019. 5. 21.
반응형

Hi

I'll give you a command that you can batch edit in a simple way ~

Is it too hard for the user to adjust one by one in the ex-post and extermination AD?

So I make a list with CSV and execute the command.

After running PowerShell on the AD server




$ Users = Import-csv (c: \ filename.csv)

foreach ($ User in $ Users)

Once you get the csv.

I am putting a name, a department, a report line, a notation name, a description, an extension number, a job number, an email, a job title, etc. in a csv file.


 {

 Set-ADUser $ User.SamAccountName -Manager $ User.Newmanager

 Set-ADUser $ User.SamAccountName -description $ User.description

 Set-ADUser $ User.SamAccountName -displayName $ User.displayName

 Set-ADUser $ User.SamAccountName -title $ User.title

 Set-ADUser $ User.SamAccountName -department $ User.department

 Set-ADUser $ User.SamAccountName -employeeID $ User.employeeID

 Set-ADUser $ User.SamAccountName -OfficePhone $ User.telephoneNumber

 Set-ADUser $ User.SamAccountName -EmailAddress $ User.mail

 Set-ADUser $ User.SamAccountName -Office $ User.physicalDeliveryOfficeName

 }

As you can see, there are commands to call csv and insert into AD.

You can do more with this application ~

If you look at my category, I have more information.

반응형

댓글