Adding and removing extensionattribute to AD object

后端 未结 7 1409
春和景丽
春和景丽 2020-12-09 18:02

I\'m using powershell to modify some AD extensionattribute.

This is my code to add an extensionattribute

Set-ADUser -Identity \"anyUser\" -Add @{exte         


        
7条回答
  •  不知归路
    2020-12-09 18:39

    Set-ADUser -Identity anyUser -Replace @{extensionAttribute4="myString"}
    

    This is also usefull

提交回复
热议问题