attribute editor

Roger Roger 6,881 Reputation points
2025-03-06T01:00:05.83+00:00

I have a few users for whom I need to add proxy addresses in Active Directory.

For example, under the Attribute Editor tab in Active Directory, the proxyAddresses attribute is present for User1 (******@myorg.abc). I want to add an additional proxy address, such as @myorg.abc (i.e., smtp:@myorg.abc).Please guide me on how to achieve this using PowerShell, as manually updating the Attribute Editor is time-consuming.

Active Directory
Active Directory
A set of directory-based technologies included in Windows Server.
6,909 questions
0 comments No comments
{count} votes

Accepted answer
  1. Ian Xue-MSFT 40,186 Reputation points Microsoft External Staff
    2025-03-06T07:01:16.4566667+00:00

    Hi Roger Roger,

    You can use the Set-ADUser to modify attributes of an Active Directory user. To add an additional proxy address, you can run the following command

    Set-ADUser -Identity user1 -Add @{ProxyAddresses="smtp:******@myorg.abc"}
    

    https://learn.microsoft.com/en-us/powershell/module/activedirectory/set-aduser?view=windowsserver2025-ps

    Best Regards,

    Ian Xue


    If the Answer is helpful, please click "Accept Answer" and upvote it.

    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.