Ken wrote:
Another issue just came up that maybe someone here can answer. In the BAT file (before compiling) I have an "Echo Running %1", this works when the file is a BAT file called from another BAT file, but as soon as I 'exe' it, the echo statement disappears. Anyone have an idea for a work around here?
There are other controls for redirection:
http://www.zsh.org/mla/users/1997/msg00526.html"Will interpret the `1>&2' as
saying you want stdout to go to both the old stderr *and* the pipe,
which in this case you don't."
Your bat to exe converter might have command line options for redirection?
or
the following workaround might survive the conversion process:
echo Running %1 1>output.txt
type output.txt