Jump to content



Welcome to KnowledgeSutra - Dear Guest , Please Register here to get Your own website. - Ask a Question / Express Opinion / Reply w/o Sign-Up!
- - - - -

Start Multiple Programs With One Shortcut


37 replies to this topic

#26 iGuest

    Hail Caesar!

  • Kontributors
  • PipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPip
  • 5,876 posts
  • Interests:Trap17 Free Web Hosting, No Ads

Posted 17 November 2009 - 05:10 PM

multiple web sites, one clickStart Multiple Programs With One Shortcut

I am trying to create a shortcut that will open multiple internet sites with one double click. I have successfully created shortcuts for all of my internet sites that I use day to day for my job. I am trying to create a script in word using the " START "" "C:Program FilesInternet Exploreriexplore.Exe" " format and then saving as a *.Bat file. I would like this to shortcut to open all of the links that I have saved on my desktop with just one shortcut or even if I could have a format that would input the url into the command. I don't know, I have looked all over for this type of forum and cannot find one with a good example. Please help!

-question by Brian

 



#27 iGuest

    Hail Caesar!

  • Kontributors
  • PipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPip
  • 5,876 posts
  • Interests:Trap17 Free Web Hosting, No Ads

Posted 22 November 2009 - 08:05 PM

using a batch file to turn off tasks running under msconfigStart Multiple Programs With One Shortcut

I have a batch file that starts up msconfig. I am looking for a way within the batch file to disable all non microsoft programs. I know I can just hit the disable all button but I was hoping to have the batch file do it. Is there any way to do this?

 

Thanks

David

 



#28 iGuest

    Hail Caesar!

  • Kontributors
  • PipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPip
  • 5,876 posts
  • Interests:Trap17 Free Web Hosting, No Ads

Posted 07 December 2009 - 02:21 AM

There's a tidier way to do that... Instead of

cd "C:Program FilesProgram"

start File.Exe

you can just have

"C:Program FilesProgramFile.Exe"

This is incredibly simple.

-reply by Benjamin

#29 iGuest

    Hail Caesar!

  • Kontributors
  • PipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPip
  • 5,876 posts
  • Interests:Trap17 Free Web Hosting, No Ads

Posted 19 December 2009 - 05:42 PM

By not using "Start" command, execution of the second (or the next) program will not continue unless the first one is completed, meaning you need to close to first program in order for the second to run.

Typing "start/?" in the command prompt displays the format and parameters.

In this example I used the Start ["Title"] [Command]  format.

example:

---------------

Start "First" "C:Program Filesapp one.Exe"

Start "Second" "D:My Gamesapp two.Exe"

Start "3rd" "C:Documents and SettingsMeMy Documentsdocument one.Doc"

Start "4th" "D:My PDFebook one.Pdf"

 --------------

As you can see spaces are included and "cd", "D:" and "C:" command are not needed.

Documents such as ".Doc" and ".Pdf" can also be open using the default program.

Double quotes (") are needed in order for us to include spaces and we include the title "First" simply because the command Start "C:Program Filesapp one.Exe"will just open a command prompt with a tile "C:Program Filesapp one.Exe".



#30 iGuest

    Hail Caesar!

  • Kontributors
  • PipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPip
  • 5,876 posts
  • Interests:Trap17 Free Web Hosting, No Ads

Posted 17 January 2010 - 04:15 PM

How to close programsStart Multiple Programs With One Shortcut

In Windows XP, there is something called taskkill

You can use taskkill and the name of the process to kill it. The name of the process can be obtained from going to the Task Manager and then to Processes.

An example, Internerd Explorer is called iexplore.Exe, so to close it, the command would be taskkill /F / I'm iexplore.Exe

The /F and /I'm are as follows:

/F forces the termination of the process

/I'm specifies the image name

More help on how to use taskkill can be found by clicking on "Start", then on "Run..." and typing "cmd" (without the quotation marks) and hitting 'Enter". In the window that pops up, type taskkill /? for help.

This could be combined with the procedure on how to open programs if you need to terminate a process immediately.

-reply by Another user

#31 iGuest

    Hail Caesar!

  • Kontributors
  • PipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPip
  • 5,876 posts
  • Interests:Trap17 Free Web Hosting, No Ads

Posted 05 May 2010 - 08:20 AM

How to execute a bat file via php scriptStart Multiple Programs With One Shortcut

How to execute a bat file via php script ?

 

Regards.

 

-reply by Naved

#32 scruppy

    Newbie [Level 1]

  • Kontributors
  • Pip
  • 12 posts

Posted 03 September 2010 - 09:35 PM

Great tutorial but what would you use this for? I mean it could be useful once or twice but then it just gets annoying but still a good tut

#33 Liquidized

    Member [Level 1]

  • Kontributors
  • PipPipPipPip
  • 73 posts

Posted 04 September 2010 - 01:38 AM

View Postscruppy, on 03 September 2010 - 09:35 PM, said:

Great tutorial but what would you use this for? I mean it could be useful once or twice but then it just gets annoying but still a good tut
Such as for multiple game clients (if your PC has good ram and a good processor) for games such as Dream Of Mirror (DOMO).... You know, you could always run the client/file in Sandboxie or Virtual machine. I think... *scratches head* good tutorial if i ever wanted to run multiple game clients or multiple clients. The question is, will they interfere with interactions (suppose 1.exe is a spammer for a game and types "suck it" and you run multiple? would it interfere?)

#34 Guest_Andrew_*

  • Guests

Posted 30 December 2010 - 01:48 PM

Great tutorial man!!!

It's need to me in Microsoft man pages, but it isn't.
You help me a lot with this annoing "one window only" problem!

Thx!

#35 Guest_Anyan_*

  • Guests

Posted 16 August 2011 - 09:12 PM

Exactly what I needed. Thanks a lot.




Reply to this topic


This post will need approval from a moderator before this post is shown.

  


1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users