I installed the Async Server for AX 2012 R3 (Retail) as shown in the installation guide.
then I need to run this command in the Windows PowerShell using administrator user and password
$Cred = @((New-Object System.Management.Automation.PSCredential('domain\user', (ConvertToSecureString 'password' -AsPlainText -Force)))
but the following
PS C:\Program Files (x86)\Microsoft Dynamics AX\60\CDX\Async Server\Tools> $Cred = @((New-Object System.Management.Autom
ation.PSCredential('"Domain"\User', (ConvertToSecureString 'password' -AsPlainText -Force))))
ConvertToSecureString : The term 'ConvertToSecureString' is not recognized as the name of a cmdlet, function, script
file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct
and try again.
At line:1 char:89
+ ... ministrator', (ConvertToSecureString 'pass@word06' -AsPlainText -Force))))
+ ~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (ConvertToSecureString:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
did anyone knows how to solve this issue?