I am trying to create an AD account, I’m making use of the ootb create provisioning policy. I am able to create the account manually but through IDN this is the error that I’m getting. I am not setting PasswordNotRequired attribute through the provisioning policy. I am also not setting password on this account. Is there any permission issue, can anyone help me please
Exception occurred while executing the RPCRequest: Errors returned from IQService. “Error occurred while disabling Password_Not_Required flag for the account CN=Test User,OU=Sandbox,DC=test,DC=com Access is denied. Access is denied. . HRESULT:[0x80070005]”, “Error occurred while enabling the account CN=Test User,OU=Sandbox,DC=test,DC=com Access is denied. Access is denied. . HRESULT:[0x80070005]”
Generally I’ve seen this done in the AfterCreate/Update extensions to AD and it involves including the value 544 (PASSWD-NOTREQD) to the UserAccountControl attribute. It’s not a specific attribute in AD, but bundled into this multi-use attribute.
We were able to solve this by granting permission to the service account to be able to set password during account creation, unfortunately setting the UserAccountControl attribute in the create provisioning policy didnt work.