The specified directory service attribute or value does not exist error on Create Ad Object orchestration activityIssue When you use Create AD Object activity and pass certain values on the ObjectData field such as SN (for surname) you get the following error on the ECC message: <error>The specified directory service attribute or value does not exist.Stack Trace: at System.DirectoryServices.DirectoryEntry.CommitChanges()at CommitChanges(Object , Object[] )at System.Management.Automation.DotNetAdapter.AuxiliaryMethodInvoke(Object target, Object[] arguments, MethodInformation methodInformation, Object[] originalArguments)</error>ReleaseMicrosoft Active DirectoryCauseCreate AD Object only supports an Object with generic properties, Surname isn't one.ResolutionYou must remove the unsupported object from the ObjectData field. A list of supported properties can be listed using the command: Get-ADObject -Properties * -Filter "samaccountname -like 'zervicenow'" Example: PS C:\Users\Administrator.SUPPORTLABAUTO> Get-ADObject -Properties * -Filter "samaccountname -like 'zervicenow'" accountExpires : 9223372036854775807CanonicalName : supportlabauto.service-now.com/Users/zervicenowCN : zervicenowcodePage : 0countryCode : 0Created : 9/19/2018 7:29:37 AMcreateTimeStamp : 9/19/2018 7:29:37 AMDeleted :Description :DisplayName :DistinguishedName : CN=zervicenow,CN=Users,DC=supportlabauto,DC=service-now,DC=comdSCorePropagationData : {12/31/1600 4:00:00 PM}givenName : MOZARTinstanceType : 4isDeleted :LastKnownParent :Modified : 9/19/2018 7:29:52 AMmodifyTimeStamp : 9/19/2018 7:29:52 AMName : zervicenownTSecurityDescriptor : System.DirectoryServices.ActiveDirectorySecurityObjectCategory : CN=Person,CN=Schema,CN=Configuration,DC=supportlabauto,DC=service-now,DC=comObjectClass : userObjectGUID : 6e8346ee-9ab5-45d1-a428-a1e7b0743900objectSid : S-1-5-21-4064951249-3552310721-759615066-1400primaryGroupID : 513ProtectedFromAccidentalDeletion : FalsepwdLastSet : 0sAMAccountName : zervicenowsAMAccountType : 805306368sDRightsEffective : 15street : MruserAccountControl : 546uSNChanged : 4140968uSNCreated : 4140968whenChanged : 9/19/2018 7:29:52 AMwhenCreated : 9/19/2018 7:29:37 AMRelated LinksFor complex AD operations, you must use the Run Powershell Activity.