Here is a simple code to Create a batch file to run all the important files that you usually run when you sit on the computer. For Example, when i come to office, i run Yahoo Messeger, Specific Excel file which has my data, a notepad file which again has some text data and firefox browser.
For doing that i developed a batch program as follows:
Code:
@echo off
ECHO Starting FireFox
start firefox
ECHO FireFox Started
ECHO Starting ABC.TXT
start D:\xyz\abc.txt
ECHO ABC Started
ECHO Starting PQR.XLSX
start D:\xyz\pqr.xlsx
ECHO PQR.XLSX Started
ECHO Starting Yahoo Messenger
start C:\Progra~1\Yahoo!\Messen~1\YahooMessenger
ECHO Yahoo Messenger Started
pause
exit
Type the above code in notepad and save the file with extension 'bat' example : work.bat
Bookmarks