How to Set Additional Fields with the Create User in Microsoft AD Spoke using Flow DesignerDescriptionThe Create User action in the Microsoft AD Spoke contains the following fields. Depending on your organisational requirements, it may be necessary to add more fields. Release or EnvironmentLondon onwardsResolutionThe platform uses Powershell and the New-ADUser to pass the parameters from the Create User to Active Directory. This may be found in the ActionCreateNewUserAD.ps1. https://<instance>.service-now.com/nav_to.do?uri=ecc_agent_script_file.do?sys_id=7bf3725c93801300eb08925cf67ffbd0 This script may be customised to read more fields from the Flow and pass them to AD. The list of parameters New-ADUser accepts is available at Microsoft Docs: https://docs.microsoft.com/en-us/powershell/module/addsadministration/new-aduser The list of Active Directory attributes may also be found in Microsoft Docs. https://docs.microsoft.com/en-us/windows/win32/adschema/attributes-allAdditional InformationCopy or customise the "Create User" in the Flow DesignerAdd inputs for the additional fields and define them as payloadsPass these inputs to ActionCreateNewUserAD.ps1 in the Create User step.Modify ActionCreateNewUserAD.ps1 to so that these inputs are received as variables and are included in the New-ADUser commands in the Script section.