Active Directory
A set of directory-based technologies included in Windows Server.
6,706 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Good day Dears,
Kindly i need to copy all my users ip phone (Which is their telephone Extenstion) to put it on another filed which is Home filed to all users using poweshell commands.
One Note each user have his IP phone so i need to copy each user ip phone to his home number to be matched where i need to apply it in all my organization.
Kindly check the attached file.Thanks
It might be a simple as this:
get-aduser -filter * -properties homephone,ipphone |
ForEach-Object{
set-aduser $_.distinguishedname -HomePhone $_.ipphone
}