Hello,
I am having trouble updating adaxes custom attributes when creating a new user with the powershell module, would running the New-AdmUser also trigger an operation succeeded business rule? Here's my example script below.
Import-Module Adaxes
$parentDN = "OU=GroupIDtesting,DC=test,DC=local"
$name = "Adaxes8 Name"
$firstName = "Adaxes8"
$lastName = "Name"
$title = "Testing"
$EmployeeID = "999199"
$MobilePhone = "999-999-9999"
New-AdmUser $name -Path $parentDN -GivenName $firstName -Surname $lastName -SamAccountName "$firstname.$lastname" -DisplayName "$firstName $lastname" -UserPrincipalName "$firstname.$lastname@test.local"
-EmployeeID $EmployeeID -MobilePhone $MobilePhone -OtherAttributes @{adm-CustomAttributeText1 = $title }