Advertisement
Help Keep Boards Alive. Support us by going ad free today. See here: https://subscriptions.boards.ie/.
If we do not hit our goal we will be forced to close the site.

Current status: https://keepboardsalive.com/

Annual subs are best for most impact. If you are still undecided on going Ad Free - you can also donate using the Paypal Donate option. All contribution helps. Thank you.
https://www.boards.ie/group/1878-subscribers-forum

Private Group for paid up members of Boards.ie. Join the club.
Hi all, please see this major site announcement: https://www.boards.ie/discussion/2058427594/boards-ie-2026

Any way to make 2 programs open together?

  • 20-05-2012 04:48PM
    #1
    Banned (with Prison Access) Posts: 1,275 ✭✭✭


    Is there something I can do so that whenever a particular application is opened, another one is also ran? For example when I open a certain browser, a proxy client is also ran, or when I open uTorrent a certain security program is ran?

    Is there a way to do this, some sort of double-shortcut or batch file I can create? I don't want these programs ran on start-up btw

    Cheers


Comments

  • Moderators, Technology & Internet Moderators Posts: 11,017 Mod ✭✭✭✭yoyo


    Is there something I can do so that whenever a particular application is opened, another one is also ran? For example when I open a certain browser, a proxy client is also ran, or when I open uTorrent a certain security program is ran?

    Is there a way to do this, some sort of double-shortcut or batch file I can create? I don't want these programs ran on start-up btw

    Cheers

    You could make a bat file and save on your desktop, just add the full install paths to the batch file:
    cd ..
    cd ..
    cd ..
    cd Program Files\Microsoft Office\Office14\
    start winword.exe
    cd ..
    cd ..
    cd ..
    cd Program Files\Microsoft Office\Office14\
    start msaccess.exe
    etc.
    I think this should work fine, just type the locations in notepad, save (choose "All Files" instead of text file *.txt) and call it open utorrent.bat or whatever
    Edit: Just made a sample batch script that will do it (tested), use cd .. to go back a dir

    Nick


  • Moderators, Computer Games Moderators Posts: 4,282 Mod ✭✭✭✭deconduo


    yoyo wrote: »
    You could make a bat file and save on your desktop, just add the full install paths to the batch file:

    etc.
    I think this should work fine, just type the locations in notepad, save (choose "All Files" instead of text file *.txt) and call it open utorrent.bat or whatever
    Edit: Just made a sample batch script that will do it (tested), use cd .. to go back a dir

    Nick

    Why the cd .. command? Just use it like this:
    cd "C:\Windows"
    start notepad.exe
    cd "D:\Program Files (x86)\Mozilla Firefox"
    start firefox.exe
    cd "C:\Users\deconduo\Documents"
    start program.exe

    Put it in a notepad file and save as 'xxxx.bat' You can then put it anywhere and it will work fine.


Advertisement