Search found 3 matches

by aSlavonian
26 Jan 2014 11:30
Forum: DOS Batch Forum
Topic: prog2.bat controls the external prog1.exe
Replies: 6
Views: 4045

Re: prog2.bat controls the external prog1.exe

You can try this but it may be the same. This assumes that you don't have any poison characters in your input data like & ) % etc. Another option is an AutoIt script. @echo off ( echo FX1 echo C:\CMK15.TXT echo YX3 echo YX4 echo 12 echo ENGINESTARTER )>file.txt PROG5.EXE <file.txt My input data...
by aSlavonian
26 Jan 2014 08:12
Forum: DOS Batch Forum
Topic: prog2.bat controls the external prog1.exe
Replies: 6
Views: 4045

Re: prog2.bat controls the external prog1.exe

The solution depends on the program. Some allow redirection and piping of text and others don't. @echo off ( echo FX1 echo C:\CMK15.TXT echo YX3 echo YX4 echo 12 echo ENGINESTARTER )|PROG5.EXE I started this prog.bat but prog5.exe did not collect data FX1,..,.. from echo commands. The first thing i...
by aSlavonian
25 Jan 2014 17:55
Forum: DOS Batch Forum
Topic: prog2.bat controls the external prog1.exe
Replies: 6
Views: 4045

prog2.bat controls the external prog1.exe

Please Help me, I use interactive qbasic prog5.exe that after starting (the win_xp) requirements six times data input via keyboard. After that, do its job and prints text and diagram on the screen. Please help to make Start5.bat command that would be accomplished automatically with the prepared data...