Sometimes you may want to set or clear attributes of an AD object (e.g. the extensionAttributes of an AD user) through Powershell.
To set an attribute:
Set-ADUser -Identity "AnyADUser" -Add @{extensionAttribute15="SomeValue"}
To clear an attribute (i.e. unset the attribute):
Set-ADUser -Identity "AnyADUser" -Clear extensionAttribute15
« ‹ | January 2025 | › » | ||||
Sun | Mon | Tue | Wed | Thu | Fri | Sat |
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |