16-07-19 12:59 PM
17-07-19 06:09 AM
This is because of WOW64 file system redirection, to disable do the following changes in Utility - Environment
Add following line to Global Code Stage
Private Declare Function Wow64EnableWow64FsRedirection Lib "kernel32.dll" (ByVal Enable As Boolean) As Boolean
And add following lines to Start Process Read Stderr and Stdout Action's code stage
At beginning of code stage
Wow64EnableWow64FsRedirection(False)
At end of code stage
Wow64EnableWow64FsRedirection(True)
Pass batch file in Program and arguments in Argument data items resp. and read output in Standard Output data item, it should run in System32 now and no need to attach to cmd window