I realized a few days ago that every time I sit down at work, I do a few things after unlocking my computer. First, I open up Firefox, then I open up Chrome, then I log in to Digsby. I realized I could probably save repeating this daily by writing a small batch script to open up Firefox and Chrome , but I couldn't figure out how to make it work.. and since the whole effort is to save time I don't want to bash my head around in the windows command prompt to do it. I also tired this in powershell but ran in to a bunch of security nonsense.

Is there a way to do this that I am missing? Bonus points if somebody has figured out how to manipulate Digsby via COM , scripting, or python =)

link|improve this question
To make a batch file just list each program file you want to start on a separate line, then put it or a shortcut to it in your Startup folders. Windows also has a START command with more options which can be used for each program -- type help start at a command prompt for usage info. – martineau Jan 4 '11 at 18:58
feedback

4 Answers

up vote 3 down vote accepted

You could also try this idea

http://lifehacker.com/5651042/choose-which-applications-launch-on-startup-with-autohotkey

You can compile and AHK Script to an EXE File and link it in your startup folder (if you don't want to keep Autohotkey)

link|improve this answer
feedback

You can place a shortcut of any application you want to start automatically inside

%systemdrive%\users\%username%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup

For example

c:\users\administrator\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup

link|improve this answer
+1 If you want programs to automatically start up when you login, then add them the startup list - that's what it's designed for. – Ian Boyd Jan 4 '11 at 16:48
I'm looking for a single click to open multiple applications. I don't actually log-in every time, I frequently just unlock the screen. – Bill Jan 4 '11 at 21:39
feedback

Found it here: http://www.knowledgesutra.com/forums/topic/54068-start-multiple-programs-with-one-shortcut/

Basically, in your batch file (*.bat), '@echo off' shuts off output on the command prompt, 'rem' lines are comments, 'cd' changes to a directory, 'start' starts up the program without waiting for that program to finish. If you just had 'foo.exe' instead of 'start foo.exe' then the command prompt would stall until you closed the foo program. 'exit' closes the command prompt so you don't get left with an empty black window staring at you.


@echo off
rem SLASH'EM
cd C:\games\slashem-v0.0.7e7f3
start slashem.exe

rem Firefox
cd C:\Program Files (x86)\Mozilla Firefox
start firefox.exe

exit
link|improve this answer
feedback

7apl is a free multi program launcher that lets you set up groups- you can run anytime not just at start up.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.