One small annoyance for a lot of people is having to click on the same five or six icons every morning to start their workday. For example, someone might need to open Outlook, Excel, QuickBooks, Calculator and Internet Explorer every single morning. That’s five mouse clicks to accomplish one task, and that can get annoying. Wouldn’t it be cool to have a single shortcut that can open all of these programs? You can easily do this via a batch file and five minutes of typing.
Try this: open Notepad and paste all of the yellow text below into the Notepad window. Save the file on your desktop as “sample.cmd” (make sure that “Save As Type:” is set to “All files” and not “Text Documents”, or else the file will be saved as sample.cmd.txt):
start calc
start /min mspaint
start charmap
start /max wordpad
exit
When you double-click on the batch file, the programs listed will open exactly in the order listed in the batch file. You’ll probably also notice that Paint has started but is minimized, while WordPad has been started in a maximized window. You might guess that this is because of the /min and /max switches in the batch file, and your guess would be correct.