Run Important Files with One Double Click
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
Re: Run Important Files with One Double Click
wow thats great...! that means i can enable my personal software and run any game and a number of files with just one double click! thats great... keep coming with such posts... quite informative...!! thanks for that impressive info!!
Re: Run Important Files with One Double Click
You're welcomed...! but don't forget to post your experiences and new ideas which you would like to share! All the best!
Re: Run Important Files with One Double Click
Hey dude!
This is very nice thing you shared with all of us.
Since people who dont know the batch files now will try to make some batch files for themselves & enjoy this technique to run multiple through running a single bat file. Must say its a nice post & keep posting such lettle but important things will all of us. Knowledge is for sharing! :)
Re: Run Important Files with One Double Click
Pretty clever, thanks. :)