Creating Batch File (.bat) in Windows

I do folding all the time. So instead of opening each of the instances manually, I can create a batch file that open all the folding.exe all at once.

To open multiple instances of processes,

start /d "file_path" instance_name

Example:

start /d "C:\fah1_smp" Folding@home-Win32-x86.exe
start /d "C:\fah2_smp" Folding@home-Win32-x86.exe
start /d "C:\fah3_smp" Folding@home-Win32-x86.exe
start /d "C:\fah4_smp" Folding@home-Win32-x86.exe
start /d "C:\fah5_smp" Folding@home-Win32-x86.exe


To open Chrome in New Window + Multiple Links,

start "chrome_path" chrome.exe --new-window "url_1" "url_2" ...

Example:
start "C:\Users\Gary\AppData\Local\Google\Chrome\Application\" chrome.exe --new-window "forum.lowyat.net" "www.yahoo.com"