I just start to learn how to build batch file. ( on the windows 7 environment)
I want to build the batch file which is able to run .exe files sequentially .
I was trying to apply above idea but I am not really sure how to apply it
For example, there are three file on the D:/
In "D:/" there are three .exe files.
- MyDriver.exe
- YouDriver.exe
- Mysoftware.exe
And I would like to build batch file which is running three exe files sequentially
Possible scenario is..
- Run batch file
- Run MyDriver.exe
- MyDriver file's install GUI pops up and then user start to install Mydriver
- Done with MyDriver.exe
- Run YouDriver.exe
- YouDirver file's install GUI pops up and then user start to install YouDriver
- Done with YouDriver.exe
- Run MySoftware.exe
- MySofrware install interface pops up and then user start to install MySoftware
- Done exit batch file.
I am not really sure if batch files can do it or not...
if it is impossible , is there any other options to build it ???
thanks