Today, I received a task in which a sub-company had a user account of 100 and changed the new phone number. By the way, it needs to be reflected in AD.
Positions of users.
Well, there are more than 100 people. If you change it manually, it will take a lot of time. The first thing you think of is to use a script to modify it, just thinking of powershell.
First, upload a csvfile and arrange the username in the following format.
Samaccountname, telephonenumber, title
User1, 1234567, Engineer
User2, 2345678, sales
...,....,....,
Call up powershell commands
Import-CSV c: \ test.csv | % {set-aduser-identity $ _. samaccountname-replace @ {telephonenumber =$ _. telephonenumber; Title =$ _. Title }}
In this way, a command is solved and does not need to be modified one by one.
This article is from the "cary_qin blog", please be sure to keep this source http://xpqinqun.blog.51cto.com/2136/1539635