Hi Team,
When trying to use Invoke vbScript activity and passing a string and input arguments. There arguments passed are not taken as one argument each…but if we have a space separated string in the argument each word is taken as one argument which is not expected. This has been testing in version 22.4 and the latest as well on community the behavior is same. Sample code below and the input arguments and the output
sample vb script:
MsgBox WScript.Arguments(0), vbInformation
MsgBox WScript.Arguments(1), vbInformation
Input Arguments:
Expected output to be First message box with First Argument and Second with Second Argument
Unexpected output:
cheers