This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

AD - Create User description

Hello

I´m using the AD create User operation. In the input fields I miss the description for the AD User.

I can add this input field but there is no update in the AD.

regards Alex.

Tags:

Labels:

RPA
  • Suggested Answer

    0  

    You can only use inputs the are supported by the operation, commonly documented in the operations Description tab. If the capability you need is not there you can always use other methods such as using other operations supporting the target service or by creating a new operation.

    For AD user with description or any other field in AD user form you can fallback to PowerShell Script operation in the Base content pack. Use New-ADUser command to create the user with descriptions and other options. Make your user name and other options as a flow variable and there you have your reusable subflow for the future.

    New-ADUser -name "${newUser}" -description "${description}"

    Although I am an OpenText employee, I am speaking for myself and not for OpenText.
    If you found this post useful, give it a “Like” or click on "Verify Answer" under the "More" button

  • 0 in reply to   

    Thanks for the quick reply, I'll test this and give feedback