| View previous topic :: View next topic |
| Author |
Message |
UndiluteD
Joined: 05 Apr 2008 Posts: 1
|
Posted: Sat Apr 05, 2008 11:44 am Post subject: [HELP] Press enter possible???? |
|
|
Hey i got two programs i have combined
currently its looks like
random1.exe
random2.exe
i want it to press enter after random1.exe has been executed as it has a pop up that goes do you want to install blah blah and i just want it to press enter automatically to confirm it.
so it should do sumthing like this
random1.exe
[ENTER](basically i want the command for this)
random2.exe
Any help would be great  |
|
| Back to top |
|
 |
|
|
Vulcano
Joined: 16 Nov 2005 Posts: 9
|
Posted: Sat Apr 05, 2008 12:53 pm Post subject: |
|
|
Use "PAUSE" and "START" commands
Eample
--------
| Code: | ...
pause
start random2.exe |
or
| Code: | ...
pause
random2.exe |
|
|
| Back to top |
|
 |
joemark
Joined: 08 Jan 2008 Posts: 23
|
Posted: Thu Apr 10, 2008 11:14 am Post subject: |
|
|
you can do this :
| Code: | start /W random1.exe
start random2.exe |
|
|
| Back to top |
|
 |
|