How to open multiple programs in Windows at once Comment ouvrir plusieurs programmes dans Windows à la fois

Posted on April 7, 2008 at 5:22 am Posté le 7 avril 2008 à 5:22 am

Why would you ever want to open multiple programs at once in Windows ? Pourquoi vous souhaitez ouvrir plusieurs programmes à la fois sous Windows? Recently, I had someone at my office ask me how they can open several desktop applications at one time without having to click on each application individually. Récemment, j'ai eu quelqu'un dans mon bureau me demandent comment ils peuvent ouvrir plusieurs applications de bureau à un moment sans avoir à cliquer sur chaque demande individuellement.

Normally, I would have called the person lazy and told them to stop bothering me, but since this person was performing a repetitive task and needed to open the same applications every day, I thought I would come up with a solution. Normalement, j'aurais appelé la personne paresseux et leur a dit de cesser de me déranger, mais depuis cette personne effectue une tâche répétitive et nécessaire pour ouvrir les mêmes applications tous les jours, j'ai pensé trouver une solution.

I also found that I usually open a couple of programs every morning no matter what: Firefox for Internet browsing, Outlook for checking email, and Visual Foxpro for writing code (since I’ma programmer). J'ai aussi trouvé que j'ai l'habitude d'ouvrir un couple de programmes tous les matins, peu importe ce que: Firefox pour la navigation sur Internet, Outlook e-mail pour le contrôle et Visual Foxpro pour écrire le code (puisque je suis programmeur). So instead of clicking on three icons, I decided to create what is called a Batch file to open all three applications for my at once! Ainsi, au lieu de cliquer sur trois icônes, j'ai décidé de créer ce que l'on appelle un fichier batch pour ouvrir tous les trois demandes de mes à la fois!

You can create batch files in Windows XP and Vista very easily, all you need is Notepad! Vous pouvez créer des fichiers batch sous Windows XP et Vista très facilement, il vous suffit d'avoir le Bloc-notes!

How to create a batch file in Windows Comment créer un fichier batch dans Windows

1. Open up Notepad Ouvrez le Bloc-notes

2. Copy and paste the line below as the first line in the file: Copiez et collez la ligne ci-dessous que la première ligne dans le fichier:

@echo off @ echo off

Echo off basically tells Windows to not give you any messages or popup windows when running the commands in the batch file. Echo off raconte essentiellement Windows de ne pas vous donner des messages ou des fenêtres pop-up lors de l'exécution de commandes dans le fichier batch.

3. Now we need to actually call the executables for the three programs that we want to open. Maintenant, nous devons effectivement appel les exécutables pour les trois programmes que nous voulons pour l'ouvrir. So in our example, I want to open Firefox, Outlook, and Foxpro. Donc, dans notre exemple, je tiens à ouvrir Firefox, Outlook et Foxpro. The next three lines would look like this: Les trois prochaines lignes ressemblent à ceci:

start “Firefox” “C:\Program Files\Mozilla Firefox 3 Beta 3\firefox.exe” départ "Firefox" "C: \ Program Files \ Mozilla Firefox 3 Beta 3 \ firefox.exe"
start “Outlook” “C:\Program Files\Microsoft Office\Office12\Outlook.exe” départ "Perspectives" "C: \ Program Files \ Microsoft Office \ Office12 \ Outlook.exe"
start “Foxpro” “C:\Program Files\Microsoft Visual FoxPro 9\vfp9.exe” départ "Foxpro" "C: \ Program Files \ Microsoft Visual FoxPro 9 \ vfp9.exe"

There are three parts to each command above and here’s what it means: Il ya trois parties à chaque commande ci-dessus et voici ce que cela signifie:

start - That is the command used in batch files to open programs start - C'est la commande utilisée en batch des fichiers sur les programmes ouverts

“App Name” - The second parameter is the name of the application you are going to be opening. "App Nom" - Le deuxième paramètre est le nom de l'application que vous allez être en ouverture. You can put any name you like here since it only uses this parameter for title purposes. Vous pouvez mettre n'importe quel nom comme vous ici depuis seulement il utilise ce paramètre pour le titre.

“App Path” - The last parameter is the actual path to the executable file for the program. "App Path» - Le dernier paramètre est le chemin vers le fichier exécutable pour le programme. You can always find the path of a program by right-clicking on the icon and going to Properties . Vous pouvez toujours trouver le chemin d'un programme par un clic droit sur l'icône et allez sur Propriétés. For example, if I wanted to know the path to the executable file for Firefox, I would right-click and choose Properties. Par exemple, si je voulais connaître le chemin vers le fichier exécutable pour Firefox, je clic-droit et choisissez Propriétés.

propriétés

Now all I need to do is look at the path in the Target box and simply copy and paste that into my batch file script. Maintenant, tout ce que j'ai à faire est de regarder le chemin d'accès dans la case cible et il suffit de copier et le coller dans mon fichier batch script.

Firefox chemin

So now your batch file should look something like this: Alors maintenant votre fichier batch devrait ressembler à quelque chose comme ceci:

fichier batch

Now all you have to do is actually save it as a batch file, which is very easy. Maintenant, tout ce que vous avez à faire est effectivement l'enregistrer comme un fichier batch, ce qui est très facile. Go to File and click Save As . Allez dans Fichier et cliquez sur Enregistrer sous. Give your file a name like “ TEST.BAT “. Donnez votre fichier un nom comme "TEST.BAT". Note that I added the .BAT to the file name. Notez que j'ai ajouté le. MTD pour le nom du fichier. Lastly, change the Save As Type to All Files instead of Text file. Enfin, changer le Type de fichier à tous les fichiers au lieu de fichier texte.

mettre fichier batch

That’s it! That's it! You should now go ahead and test out your batch file and see if all of your programs load up. Vous devez maintenant aller de l'avant et de tester votre fichier batch et de voir si tous les programmes de votre charge. One thing I have found is that loading applications via a batch file is much faster for some reason. Une chose que j'ai trouvé est que le chargement des applications par l'intermédiaire d'un fichier batch est beaucoup plus rapide pour une raison quelconque. I’m not really sure why, but my Firefox, Outlook and Foxpro apps all load within 2 to 3 seconds whereas if I open them up individually, each one takes at least 5 seconds. Je ne suis pas vraiment pas pourquoi, mais mon Firefox, Outlook et Foxpro charge toutes les applications dans les 2 à 3 secondes alors que si je les ouvrir individuellement, chacun prend au moins 5 secondes.

Anyone else ever create their own batch file and if so, what did you use it for? Toute autre personne jamais créer leur propre fichier batch et si oui, qu'avez-vous l'utiliser? Enjoy! Apprécier!

Technorati Tags: Technorati Tags: , , ,

If you enjoyed this post, make sure you Si vous avez aimé ce poste, assurez-vous subscribe to my RSS feed s'abonner à mes flux RSS ! !

» Filed Under »Classé dans Computer Tips Computer Tips

Related Posts Postes connexes

14 Responses to “How to open multiple programs in Windows at once” 14 Responses to "Comment ouvrir plusieurs programmes dans Windows à la fois"

  1. Phil said on : Phil a dit:

    I can’t seem to get it to open my applications. Je n'arrive pas à obtenir pour mes applications ouvertes. I have local admin rights if that helps. J'ai droits administrateurs locaux si cela aide.

    This is what I have in my batch file C'est ce que j'ai dans mon fichier batch

    @echo off @ echo off
    start“Outlook”“C:\Program Files\Microsoft Office\Office11\Outlook.exe” départ "Perspectives" "C: \ Program Files \ Microsoft Office \ Office11 \ Outlook.exe"
    start“Firefox””C:\Program Files\Mozilla Firefox\firefox.exe” départ "Firefox" "C: \ Program Files \ Mozilla Firefox \ firefox.exe"

    Is this correct? Est-ce correct?

    Am I missing spaces or something. Am I missing espaces ou quelque chose.
    Also in your example is it supposed to say office12 my exe files are in office11 folder? Aussi dans votre exemple est-il censé-à-dire office12 mon exe sont en office11 dossier?


  2. akishore akishore said on : dit le:

    Hi Phil, Salut Phil,

    I think your only problem is the spaces. Je pense que votre seul problème est les espaces. It should look like this: Il devrait ressembler à ceci:

    @echo off @ echo off
    start “Outlook” “C:\Program Files\Microsoft Office\Office11\Outlook.exe” départ "Perspectives" "C: \ Program Files \ Microsoft Office \ Office11 \ Outlook.exe"
    start “Firefox” ”C:\Program Files\Mozilla Firefox\firefox.exe” départ "Firefox" "C: \ Program Files \ Mozilla Firefox \ firefox.exe"

    Notice that I just added spaces between start and word “Outlook” and then between “Outlok” and the phrase “C:\Program…\”. Notez que je viens d'ajouter des espaces entre le départ et l'mot "Perspectives" et puis entre "Outlok" et l'expression "C: \ Program… \".

    And that’s fine that your Office executable are in Office11, it just depends on which version you have installed on your computer. Et c'est bien que votre office exécutable sont dans Office11, ça dépend de quelle version vous avez installé sur votre ordinateur. Office12 is for Office 2007. Office12 est pour Office 2007.

    Let me know if you were able to get it working or not. Permettez-moi savoir si vous étiez en mesure de faire fonctionner ou non. Thanks! Merci!


  3. Phil said on : Phil a dit:

    Okay, I was wondering if the office12 was for 2007. Bon, je me demandais si le office12 a été pour 2007.

    I added the spaces and I get 1 error for each of programs I am trying to open. J'ai ajouté les espaces et j'obtiens 1 erreur pour chacun des programmes que je suis en train de s'ouvrir. I copied the targets directly from the properties window. J'ai copié directement les objectifs de la fenêtre de propriétés.

    This is the message I get: C'est le message que je reçois:
    Windows cannot find oFirefoxo. Windows ne peut pas trouver oFirefoxo. Make sure you typed the name correctly, and then try again. Assurez-vous que vous avez entré le nom correctement et essayez à nouveau. To search for a file,… Pour rechercher un fichier,…

    Any ideas? Des idées?

    Thanks! Merci!


  4. akishore akishore said on : dit le:

    Hi Phil, Salut Phil,

    What is the version of your OS? Quelle est la version de votre système d'exploitation? Are you running Windows XP or Vista? Êtes-vous sous Windows XP ou Vista? I think it may be an issue with the syntax, so try the following: Je pense qu'il mai être un problème avec la syntaxe, essayez ce qui suit:

    @echo off @ echo off
    start “C:\Program Files\Microsoft Office\Office11\Outlook.exe” start "C: \ Program Files \ Microsoft Office \ Office11 \ Outlook.exe"
    start “C:\Program Files\Mozilla Firefox\firefox.exe” start "C: \ Program Files \ Mozilla Firefox \ firefox.exe"

    Basically, I removed the first parameter from the start line so it should just read start and then a space and then the path name to the exe file in quotes. En gros, j'ai supprimé le premier paramètre de la ligne de départ devrait donc commencer viens de lire, puis un espace, puis le chemin de l'exe entre guillemets. Try that and let me know. Essayez cela et faites-le moi savoir.


  5. Phil said on : Phil a dit:

    I’m running Windows XP Pro SP2 with all the latest updates. Je suis sous Windows XP Pro SP2 avec toutes les dernières mises à jour. Lenovo T60 Lenovo T60
    I changed my batch file and it still didn’t work and I figured I’d just copy and paste what you posted and it still nothing. J'ai changé mon fichier batch et encore il n'a pas fonctionné et j'ai pensé que j'avais simplement copier et coller ce que vous affiché et toujours rien.
    Could their be any AV software that could be blocking this? Peut-être toute leur AV logiciel qui pourrait être le blocage de ce?
    Again thanks for your help Encore une fois merci pour votre aide


  6. Phil said on : Phil a dit:

    hm I was messing around with this some more. hm j'étais avec messing autour de ce plus. I have a folder on my Desktop with FirefoxPortable J'ai un dossier sur mon bureau avec FirefoxPortable

    start “” “C:\Documents and Settings\pgastwirth\Desktop\firefox 3 beta5\FirefoxPortableTest\FirefoxPortable.exe” départ "" "C: \ Documents and Settings \ pgastwirth \ Desktop \ Firefox 3 beta5 \ FirefoxPortableTest \ FirefoxPortable.exe"

    This opens up fine. Cela ouvre amende. But I still get errors for these Mais je encore obtenir pour ces erreurs

    start “” “C:\Program Files\Microsoft Office\Office11\Outlook.exe” départ "" "C: \ Program Files \ Microsoft Office \ Office11 \ Outlook.exe"
    start “” “C:\Program Files\Mozilla Firefox\firefox.exe” départ "" "C: \ Program Files \ Mozilla Firefox \ firefox.exe"

    I keep checking my file paths to make sure that they are correct. Je garde mon contrôle de chemins d'accès afin de s'assurer qu'ils sont corrects.
    Oh well, I’ll keep trying. Oh bien, je vais essayer. Eventually I should get. Finalement, je devrais obtenir. Something can’t be right. Quelque chose ne peut être droit.
    Thanks Merci


  7. Phil said on : Phil a dit:

    I figured it out. I figured it out. For some reason when I copied and pasted the code from you site. Pour une raison quelconque, lorsque j'ai copié et collé le code de votre site. The quotation marks were different characters than when I actually press the quotation key on my keyboard. Les guillemets sont différents caractères que lorsque je presse la citation clé sur mon clavier. After I replaced the quotation marks, this batch worked. Après avoir remplacé les guillemets, ce lot de travail. If anybody wants to open a website add this Si quelqu'un veut ouvrir un site ajouter ce

    Start “” “C:\Program Files\Internet Explorer\iexplore.exe” Démarrer "" "C: \ Program Files \ Internet Explorer \ iexplore.exe" http://www.online-tech-tips.com

    I’m guessing this will do the same for Firefox but I have not personally tested this. Je devine que ce sera faire de même pour Firefox, mais je n'ai pas testé personnellement. Now I’m going to try to get firefox to open up multiple tabs. Maintenant, je vais essayer d'obtenir firefox d'ouvrir plusieurs onglets.

    Thanks for all your help with this. Merci pour votre aide dans ce sens. I knew it was something simple. Je savais que c'était quelque chose de simple.


  8. Dragan said on : Dragan dit:

    Works absolutely perfect. Travaux absolument parfait. Thanks a lot. Merci beaucoup.


  9. Bill P said on : P dit le projet de loi sur:

    how would you add a password in the outlook string. comment pouvez-vous ajouter un mot de passe dans les perspectives chaîne. I have a password I have to enter once outlook opens. J'ai un mot de passe J'ai d'entrer une fois ouvre des perspectives.


  10. akishore akishore said on : dit le:

    Phil, glad you got it working! Phil, glad you got it working!

    Bill, I didn’t know it was possible to password protect Outlook! Le projet de loi, je ne savais pas qu'il était possible de protéger par mot de passe Outlook! Are you using a third party program? Utilisez-vous un programme tiers? And you have to enter a password into Outlook before you can view emails? Et vous devez entrer un mot de passe dans Outlook avant que vous pouvez afficher les e-mails?


  11. Guru said on : Guru a déclaré le:

    Couple of things, Couple de choses,
    1. Password protect Outlook — only third Party but then if you put it into a BAT file and kept it in plain text you would be defeating the purpose Protéger par mot de passe Outlook - seulement tiers, mais alors si vous la placez dans un fichier BAT et gardé en texte clair que vous auriez à vaincre l'objet :) just a thought juste une pensée
    2. To open Firefox in multiple tabs add the different sites with a Concat symbol between the diff urls ( its a pain IF you do work with multiple wdws of Firefox - whenever you hit Ctrl N it starts the new wdw with two tabs populated) Pour ouvrir Firefox en plusieurs onglets ajouter les différents sites avec un symbole CONCAT entre les diff URL (une douleur son SI vous travaillez avec de multiples wdws de Firefox - chaque fois que vous cliquez sur Ctrl + N il démarre le nouveau wdw avec deux onglets de population)
    Hey Thanx for the BAT Hey Thanx for The Bat


  12. Chakri said on : Chakri dit:

    C:\progra~1 C: \ Progra ~ 1

    instaed of program files instaed de fichiers de programme


  13. me me said on : moi moi dit:

    works with folders too. fonctionne avec des dossiers.
    Use the entire folder name. Utilisez le nom de tout le dossier.


    Pingbacks
  1. Cómo abrir varios programas al mismo tiempo en Windows » zona de software blog freeware programas shareware gratis internet pc windows bajar descargar utilidades multimedia programas gratis Comment ouvrir plusieurs programmes al mismo tiempo en Windows »zona de blog logiciel freeware programmes shareware fourni à titre gracieux Internet PC Windows bajar descargar utilidades programmes multimédia fourni à titre gracieux Says: Indique:

    [...] en: Online Tech Tips. [...] Fr: Conseils techniques en ligne. [...]

Please post your comments/suggestions! S’il vous plaît envoyer vos commentaires / suggestions!