Who knows about computers?
A Batch file can me made to open up multiple items on one click. I'm not sure if you can create a batch file with a pause in it however.
Hell, get it automated, then put it in your startup folder so you never have to click.
Hell, get it automated, then put it in your startup folder so you never have to click.
Right click on desktop & click new>shortcut.
The following example would open the file 'E:\mortgage.xls' in Excel.
"C:\Program Files\Microsoft Office\Office10\EXCEL.EXE" E:\Mortgage.xls
Does that help?
The following example would open the file 'E:\mortgage.xls' in Excel.
"C:\Program Files\Microsoft Office\Office10\EXCEL.EXE" E:\Mortgage.xls
Does that help?
Batch file work?
for example creat a notepad txt file with the below lines and change the ext to .bat
start C:\Progra~1\Micros~2\OFFICE11\excel.exe
Start explorer http://www.bonnevilleclub.com/forum/
exit
^^^^ - on my PC opens up excel and the Bonneville web page.
(if you don't put the start it opens one then waits till it closes to open the other.)
for example creat a notepad txt file with the below lines and change the ext to .bat
start C:\Progra~1\Micros~2\OFFICE11\excel.exe
Start explorer http://www.bonnevilleclub.com/forum/
exit
^^^^ - on my PC opens up excel and the Bonneville web page.
(if you don't put the start it opens one then waits till it closes to open the other.)
Dedwin is on the right path.
insert these 2 lines in between the two "Start" lines to get your 60 sec delay
@ping 127.0.0.1 -n 2 -w 1000 > nul
@ping 127.0.0.1 -n 60 -w 1000> nul
* the 60 in the second line is the timer in seconds, change it to whatever works better for you.
unless of course you, for some reason, have installed the Window2003 developers kit in which case simply stick in
sleep 60
instead of the two ping commands
insert these 2 lines in between the two "Start" lines to get your 60 sec delay
@ping 127.0.0.1 -n 2 -w 1000 > nul
@ping 127.0.0.1 -n 60 -w 1000> nul
* the 60 in the second line is the timer in seconds, change it to whatever works better for you.
unless of course you, for some reason, have installed the Window2003 developers kit in which case simply stick in
sleep 60
instead of the two ping commands



