Guest User

Untitled

a guest
Nov 22nd, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. Set-ADUser –Identity $usr -add @{"extensionattribute1"="test"} # this work
  2.  
  3. Set-ADUser –Identity $usr -add @{"extensionattribute1"="test2"} # this not!
  4.  
  5. Set-ADUser –Identity $usr -replace @{"extensionattribute1"="test2"}
  6.  
  7. Set-ADUser –Identity $usr -clear "extensionattribute1"
  8. Set-ADUser –Identity $usr -add @{"extensionattribute1"="test2"}
Add Comment
Please, Sign In to add comment