I am aiming to create a .bat launcher that will execute a command line .exe program within Console2.
My best guess would be that it should go something like:
@echo off
start "" Console.exe program.exe
but all that does it open Console2.
Please note that all .bat, and executables are all in the same folder.
Ok I looked in source for the Console.exe and drilled down into the compiled help.
You need a -r
So:
Console.exe -r program.exe