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.
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
Related knowledge document:
How do I call an EXE file from a CA Automation Point rule?
CA Automation Point documentation:
Automating with REXX Programs - Command Environments