I am looking for a way using Set-ADuser to append a value to the end of an existing attribute.
So far I have: (omitting my filter because of the sensitive nature)
Get-ADUser -Filter (<filter>) -Properties Name,DisplayName,EmployeeID,SAMAccountName | ? {$_.Samaccountname.length -eq 5} | Set-ADUser <???>
I have been looking for a method to append just to the employeeID attribute without overwriting the current value. If there is another way of accomplishing this, I would be interested to know how.