Summary: Using the -Replace parameter with Set-ADUser to take an array to populate multi-valued attributes
Question: Hey Doctor Scripto, how can I use Set-ADUser to populate multivalued attributes in Active Directory?
Answer: You can use an array with the -Replace parameter to do it.
Set-ADUser -Identity “TestUser” -Replace @{ProxyAddresses = @(“Address1″,”Address2″,”Address3”)}
PowerShell, Doctor Scripto, PowerTip, Active Directory, Walid Moselhy
The post PowerTip: Using Set-ADUser with multi-valued attributes appeared first on Scripting Blog.