You can start your computer applications automatically and control the sequence of the programs when your computer comes up. You can start number of applications that you want to start at the time of startup using batch files.
Here we consider you want to run three different applications (WordPad, calculator, and notepad) and minimized automatically with sequence at windows startup. However, you can write a batch file to open any program that is installed on your system. There are many other uses of a batch file but here we are not going to discuss them.
Open any text editor like notepad and type the following command.
start /min wordpad.exe start /min calc.exe start /min notepad.exe
Now choose the option, Save As to save this file with .bat extension. For example filename.bat.
Now Right- click on Start button and choose open > Double click Programs > here open Startup folder. Now drag your .bat file in the Startup folder and close the dialog box.
Next time When you restart the computer, WordPad, Calc will start first and then Notepad.