Sequence of Programs with parameter
Posted: 24 Sep 2010 08:53
Basically i need a 2 programs to run, one first and once it finishes the next needs to run. However I need to pass a Command Line Parameter like it does in the shortcut the program created.
Here's the Shortcut with Command Line Parameter
C:\Honeywell\WEBStation-AX-3.4.43\bin\plat.exe installdaemon
Then it needs to run
C:\Honeywell\WEBStation-AX-3.4.43\bin\ wb_w.exe
Here is what I have so far for the batch however the Command Line Parameter didn't work
Here's the Shortcut with Command Line Parameter
C:\Honeywell\WEBStation-AX-3.4.43\bin\plat.exe installdaemon
Then it needs to run
C:\Honeywell\WEBStation-AX-3.4.43\bin\ wb_w.exe
Here is what I have so far for the batch however the Command Line Parameter didn't work
Code: Select all
start /wait /b plat.exe installdaemon
start /wait /b wb_w.exe