Hoe te om veelvoudige programma's in Vensters meteen te openen
Gepost op 7 April, 2008 in 5:22 am
Waarom u ooit aan zou willen open veelvoudige programma's meteen in Vensters? Onlangs, had ik iemand op mijn kantoor me vragen hoe zij verscheidene Desktoptoepassingen kunnen in één keer openen zonder het moeten op elke toepassing individueel klikken.
Normaal, heb ik de persoon lui geroepen en hen verteld ophouden hinderend me, maar aangezien deze persoon een herhaalde taak uitvoerde en de zelfde toepassingen moest openen elke dag, dacht ik ik met een oplossing op de proppen zou komen.
Ik vond ook dat ik gewoonlijk een paar programma's elke ochtend geen kwestie open wat: Firefox voor het doorbladeren van Internet, Vooruitzichten voor het controleren van e-mail, en Visuele Foxpro het schrijven van code (aangezien ik een programmeur ben). Zo in plaats van het klikken op drie pictogrammen, besliste ik te creëren wat a wordt genoemd Het dossier van de partij om alle drie toepassingen voor mijn meteen te openen!
U kunt partijdossiers in Vensters XP en Uitzicht creëren zeer gemakkelijk, allen u bent Notepad wenst!
Hoe te om een partijdossier in Vensters te creëren
1. Stel Notepad open
2. Het exemplaar en kleeft de lijn hieronder als eerste lijn in het dossier:
@echo weg
De echo weg vertelt fundamenteel Vensters om u om het even welke berichten of popup vensters niet te geven wanneer het runnen van de bevelen in het partijdossier.
3. Nu moeten wij executables voor de drie programma's eigenlijk roepen die wij willen openen. Zo in ons voorbeeld, wil ik Firefox, Vooruitzichten, en Foxpro openen. De volgende drie lijnen zouden als dit kijken:
begin „Firefox“ „C:\Program Files\Mozilla Firefox 3 Bèta 3 \ firefox.exe“
van begin „Vooruitzichten“ „C:\Program Files\Microsoft Bureau \ Office12 \ Outlook.exe“
begin „Foxpro“ „C:\Program Files\Microsoft Visuele FoxPro 9 \ vfp9.exe“
Er zijn drie delen hierboven aan elk bevel en hier is wat het betekent:
begin - Dat is het bevel dat in partijdossiers wordt gebruikt programma's te openen
„App Naam“ - De tweede parameter is de naam van de toepassing u gaat openen. U kunt om het even welke naam zetten u hier van houdt aangezien het slechts deze parameter voor titeldoeleinden gebruikt.
„App Weg“ - De laatste parameter is de daadwerkelijke weg aan het uitvoerbare dossier voor het programma. U kunt de weg van een programma door met de rechtermuisknop aan te klikken altijd vinden over het pictogram en te gaan aan Eigenschappen. Bijvoorbeeld, als ik de weg aan het uitvoerbare dossier voor Firefox wilde kennen, zou ik zou zou Eigenschappen met de rechtermuisknop aanklikken en kiezen.
Nu is al behoefte van I te doen bekijkt de weg in Doel vakje en eenvoudig exemplaar en deeg dat in mijn manuscript van het partijdossier.
Zo nu zou uw partijdossier moeten kijken iets in die aard:
Nu is allen u moet doen bewaart het eigenlijk als een partijdossier, dat zeer gemakkelijk is. Ga aan Dossier en klik Tenzij . Give your file a name like “TEST.BAT“. Note that I added the .BAT to the file name. Lastly, change the Save As Type to All Files instead of Text file.
That’s it! You should now go ahead and test out your batch file and see if all of your programs load up. One thing I have found is that loading applications via a batch file is much faster for some reason. 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.
Anyone else ever create their own batch file and if so, what did you use it for? Enjoy!
Technorati Tags: batch files, open multiple programs at once, batch scripts, windows batch files
If you enjoyed this post, make sure you subscribe to my RSS feed!
» Filed Under Computer Tips
Related Posts
- How to batch change file extensions for Windows files
- How to resize large digital pictures so that you can email them to friends and family!
- How to read and open .DAT files in Windows
- How to split a large file into multiple smaller pieces
- Extract text from PDF, DOC, HTML, CHM, and RTF files
9 Responses to “How to open multiple programs in Windows at once”
Pingbacks
-
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 Says:
[…] en: Online Tech Tips. […]
April 7th, 2008 at 12:47 pm
Please post your comments/suggestions!
[…] en: Online Tech Tips. […]
April 7th, 2008 at 12:47 pm
























I can’t seem to get it to open my applications. I have local admin rights if that helps.
This is what I have in my batch file
@echo off
start“Outlook”“C:\Program Files\Microsoft Office\Office11\Outlook.exe”
start“Firefox””C:\Program Files\Mozilla Firefox\firefox.exe”
Is this correct?
Am I missing spaces or something.
Also in your example is it supposed to say office12 my exe files are in office11 folder?
Hi Phil,
I think your only problem is the spaces. It should look like this:
@echo off
start “Outlook” “C:\Program Files\Microsoft Office\Office11\Outlook.exe”
start “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…\”.
And that’s fine that your Office executable are in Office11, it just depends on which version you have installed on your computer. Office12 is for Office 2007.
Let me know if you were able to get it working or not. Thanks!
Okay, I was wondering if the office12 was for 2007.
I added the spaces and I get 1 error for each of programs I am trying to open. I copied the targets directly from the properties window.
This is the message I get:
Windows cannot find oFirefoxo. Make sure you typed the name correctly, and then try again. To search for a file,…
Any ideas?
Thanks!
Hi Phil,
What is the version of your OS? Are you running Windows XP or Vista? I think it may be an issue with the syntax, so try the following:
@echo off
start “C:\Program Files\Microsoft Office\Office11\Outlook.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. Try that and let me know.
I’m running Windows XP Pro SP2 with all the latest updates. 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.
Could their be any AV software that could be blocking this?
Again thanks for your help
hm I was messing around with this some more. I have a folder on my Desktop with FirefoxPortable
start “” “C:\Documents and Settings\pgastwirth\Desktop\firefox 3 beta5\FirefoxPortableTest\FirefoxPortable.exe”
This opens up fine. But I still get errors for these
start “” “C:\Program Files\Microsoft Office\Office11\Outlook.exe”
start “” “C:\Program Files\Mozilla Firefox\firefox.exe”
I keep checking my file paths to make sure that they are correct.
Oh well, I’ll keep trying. Eventually I should get. Something can’t be right.
Thanks
I figured it out. For some reason when I copied and pasted the code from you site. The quotation marks were different characters than when I actually press the quotation key on my keyboard. After I replaced the quotation marks, this batch worked. If anybody wants to open a website add this
Start “” “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. Now I’m going to try to get firefox to open up multiple tabs.
Thanks for all your help with this. I knew it was something simple.
Works absolutely perfect. Thanks a lot.