Entering a REXX to issue Windows (via DOS prompt) command getting rc<-1>.
See the sample small REXX program below:
/* REXX */
windows_command = 'CD "C:\Users"' windows_command
exit
It gets a RC = -1 when the window_command line of the REXX program is executed.
Any Windows Server release certified to run with Automation Point
When executing Windows commands from an AP REXX program the ADDRESS 'CMD' command processor must be used.
To issue a Windows command our REXX program should include the ADDRESS 'CMD' command processor:
/* REXX */
windows_command = 'CD "C:\Users\"'
ADDRESS 'CMD' windows_command
exit
Refer to the Automation Point documentation section "Automating with REXX Programs - Command Environments"