How to open multiple programs in Windows at once Como abrir vários programas em Windows em uma vez
Posted on April 7, 2008 at 5:22 am Postado em 7 de abril de 2008, 5:22 am
Why would you ever want to open multiple programs at once in Windows ? Por que você nunca quer abrir vários programas ao mesmo tempo no 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. Recentemente, eu tinha alguém no meu gabinete me perguntar como eles podem abrir várias aplicações desktop em um momento sem ter que clicar em cada aplicação individualmente.
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. Normalmente, eu teria chamado a pessoa preguiçosa e disse-lhes a deixar de preocupar-me, mas, uma vez que esta pessoa estava realizando uma tarefa repetitiva e necessárias para abrir as mesmas aplicações, todos os dias, eu pensei que ia chegar a uma solução.
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). Também constatamos que, normalmente, um jovem de programas em aberto todas as manhãs, não importa o quê: Firefox para a internet browser, Outlook para verificar e-mail, e Visual FoxPro para escrever código (uma vez que sou programador). 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! Então, em vez de clicar em três ícones, estou decidido a criar aquilo a que chamamos um arquivo em lote para abrir todas as três aplicações para o meu de uma vez!
You can create batch files in Windows XP and Vista very easily, all you need is Notepad! Você pode criar arquivos em lote do Windows XP eo Vista muito facilmente, tudo o que você precisa é Notepad!
How to create a batch file in Windows Como criar um arquivo em lote do Windows
1. Open up Notepad Abrir Notepad
2. Copy and paste the line below as the first line in the file: Copiar e colar a linha abaixo como a primeira linha do arquivo:
@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 basicamente diz o Windows para não lhe dar qualquer mensagem ou janelas popup ao executar os comandos do lote arquivo.
3. Now we need to actually call the executables for the three programs that we want to open. Agora precisamos realmente a chamada para os três programas executáveis que queremos abrir. So in our example, I want to open Firefox, Outlook, and Foxpro. Por isso, no nosso exemplo, eu quero abrir Firefox, Outlook, e FoxPro. The next three lines would look like this: As próximas três linhas seria mais ou menos assim:
start “Firefox” “C:\Program Files\Mozilla Firefox 3 Beta 3\firefox.exe” começar "Firefox" "C: \ Arquivos de programas \ Mozilla Firefox 3 Beta 3 \ firefox.exe"
start “Outlook” “C:\Program Files\Microsoft Office\Office12\Outlook.exe” começar "Outlook" "C: \ Arquivos de programas \ Microsoft Office \ Office12 \ Outlook.exe"
start “Foxpro” “C:\Program Files\Microsoft Visual FoxPro 9\vfp9.exe” "arranque FoxPro" "C: \ Program Files \ Microsoft Visual FoxPro 9 \ vfp9.exe"
There are three parts to each command above and here’s what it means: Há três peças para cada comando acima e aqui está o que significa:
start - That is the command used in batch files to open programs iniciar - Este é o comando usado em limas de programas abertos
“App Name” - The second parameter is the name of the application you are going to be opening. "App Name" - O segundo parâmetro é o nome do aplicativo que você vai ser abertura. You can put any name you like here since it only uses this parameter for title purposes. Você pode colocar qualquer nome que quiser aqui, uma vez que só usa este parâmetro para fins título.
“App Path” - The last parameter is the actual path to the executable file for the program. "App Caminho" - O último parâmetro é o verdadeiro caminho para o arquivo executável para o programa. You can always find the path of a program by right-clicking on the icon and going to Properties . Você sempre pode encontrar o caminho de um programa clicando com o botão direito no ícone e vá para Propriedades. For example, if I wanted to know the path to the executable file for Firefox, I would right-click and choose Properties. Por exemplo, se eu quis saber o caminho para o arquivo executável para o Firefox, gostaria de botão direito do mouse e selecione Propriedades.
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. Agora, tudo o que precisa fazer é olhar para o caminho na caixa Target e simplesmente copiar e colar em que o meu lote de script.
So now your batch file should look something like this: Portanto, agora seu lote deve ficar parecido com este:
Now all you have to do is actually save it as a batch file, which is very easy. Agora tudo que você precisa fazer é realmente salvá-lo como um arquivo batch, que é muito fácil. Go to File and click Save As . Ir para o arquivo e clique em Salvar como. Give your file a name like “ TEST.BAT “. Dê o seu arquivo um nome como "TEST.BAT". Note that I added the .BAT to the file name. Note que eu acrescentou o. MTD para o nome do arquivo. Lastly, change the Save As Type to All Files instead of Text file. Por último, alterar o Salvar Como Tipo de Todos os arquivos em vez do arquivo texto.
That’s it! É isso aí! You should now go ahead and test out your batch file and see if all of your programs load up. Agora você deve ir em frente e testar o seu lote de e veja se todos os seus programas de carga para cima. One thing I have found is that loading applications via a batch file is much faster for some reason. Uma coisa eu tenho encontrado é que a carga aplicações através de um lote é muito mais rápido, por algum motivo. 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. Eu não estou realmente certo porquê, mas o meu Firefox, Outlook e FoxPro apps todas as cargas dentro de 2 a 3 segundo considerando que se eu abrir-se-lhes individualmente, cada um tem, pelo menos, 5 segundos.
Anyone else ever create their own batch file and if so, what did you use it for? Ninguém jamais criar seu próprio lote e em caso afirmativo, qual você usou para se? Enjoy! Apreciar!
Technorati Tags: Technorati Tags: batch files limas , open multiple programs at once abrir vários programas ao mesmo tempo , batch scripts batch scripts , windows batch files Windows ficheiros batch
If you enjoyed this post, make sure you Se você gostou deste post, certifique-se de subscribe to my RSS feed assinar o meu feed RSS ! !
» Filed Under »Arquivado em Computer Tips Computador Dicas
Related Posts Posts relacionados
- How to create Microsoft Outlook shortcuts for email and tasks Como criar atalhos para o Microsoft Outlook e-mail e tarefas
- How to read and open .DAT files in Windows Como ler e aberto. DAT arquivos no Windows
- Save time with copy paste shortcuts in Windows Poupe tempo com atalhos copiar colar no Windows
- How to extract icons from EXE, DLL, OCX, and CPL files Como a extrair ícones de EXE, DLL, OCX, CPL e arquivos
- How to batch change file extensions for Windows files Como mudar a batch file extensões de arquivos do Windows
14 Responses to “How to open multiple programs in Windows at once” 14 Responses para "Como abrir vários programas em Windows em uma vez" 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 Cómo abrir varios PROGRAMAS al mismo tiempo en Windows "Zona de software freeware blog PROGRAMAS shareware gratis internet pc janelas bajar descargar utilidades multimédia PROGRAMAS gratis Says: Diz:
[...] en: Online Tech Tips. [...] En: On-line Dicas Tech. [...]
April 7th, 2008 at 12:47 pm 7 de Abril, 2008, 12:47 pm
Please post your comments/suggestions! Favor enviar seus comentários e sugestões!
[...] en: Online Tech Tips. [...] En: On-line Dicas Tech. [...]
April 7th, 2008 at 12:47 pm 7 de Abril, 2008, 12:47 pm
























I can’t seem to get it to open my applications. Eu não me parece que possa obtê-lo para abrir o meu pedido. I have local admin rights if that helps. Tenho local admin direitos se que ajuda.
This is what I have in my batch file Isto é o que eu tenho no meu lote
@echo off @ echo off
start“Outlook”“C:\Program Files\Microsoft Office\Office11\Outlook.exe” começar "Outlook" "C: \ Arquivos de programas \ Microsoft Office \ Office11 \ Outlook.exe"
start“Firefox””C:\Program Files\Mozilla Firefox\firefox.exe” "arranque Firefox" "C: \ Arquivos de programas \ Mozilla Firefox \ firefox.exe"
Is this correct? Será isto correcto?
Am I missing spaces or something. Am I faltam espaços ou alguma coisa.
Also in your example is it supposed to say office12 my exe files are in office11 folder? Também em seu exemplo é que é suposto a dizer office12 meu exe estão em office11 pasta?
Hi Phil, Oi Phil,
I think your only problem is the spaces. Penso que o seu único problema é a espaços. It should look like this: Ela deve ser semelhante a este:
@echo off @ echo off
start “Outlook” “C:\Program Files\Microsoft Office\Office11\Outlook.exe” começar "Outlook" "C: \ Arquivos de programas \ Microsoft Office \ Office11 \ Outlook.exe"
start “Firefox” ”C:\Program Files\Mozilla Firefox\firefox.exe” começar "Firefox" "C: \ Arquivos de programas \ Mozilla Firefox \ firefox.exe"
Notice that I just added spaces between start and word “Outlook” and then between “Outlok” and the phrase “C:\Program…\”. Repare que eu só acrescentou espaços entre início e termo "Outlook" e, depois, entre os "Outlok" ea frase "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. E isso é fino que o seu gabinete são executáveis em Office11, ela só depende de qual a versão que você tenha instalado em seu computador. Office12 is for Office 2007. Office12 é para o Office 2007.
Let me know if you were able to get it working or not. Permitam-me saber se você fosse capaz de trabalhar para tê-lo ou não. Thanks! Obrigado!
Okay, I was wondering if the office12 was for 2007. Ok, eu estava me perguntando se o office12 foi para 2007.
I added the spaces and I get 1 error for each of programs I am trying to open. Eu adicionei os espaços e fico com 1 erro para cada um dos programas estou a tentar abrir. I copied the targets directly from the properties window. Eu copiado as metas directamente a partir da janela Propriedades.
This is the message I get: Esta é a mensagem que eu vejo:
Windows cannot find oFirefoxo. O Windows não pode encontrar oFirefoxo. Make sure you typed the name correctly, and then try again. Tenha certeza que você digitou o nome corretamente e tente novamente. To search for a file,… Para procurar um ficheiro,…
Any ideas? Alguma idéia?
Thanks! Obrigado!
Hi Phil, Oi Phil,
What is the version of your OS? Qual é a versão do seu sistema operacional? Are you running Windows XP or Vista? Você está executando o Windows XP ou Vista? I think it may be an issue with the syntax, so try the following: Penso que pode ser um problema com a sintaxe, assim tente o seguinte:
@echo off @ echo off
start “C:\Program Files\Microsoft Office\Office11\Outlook.exe” começar a "C: \ Arquivos de programas \ Microsoft Office \ Office11 \ Outlook.exe"
start “C:\Program Files\Mozilla Firefox\firefox.exe” começar a "C: \ Arquivos de programas \ 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. Basicamente, eu removido do primeiro parâmetro a partir da linha de modo que deveria começar apenas ler e, em seguida, iniciar um espaço e, em seguida, o caminho para a exe nome entre aspas. Try that and let me know. Experimente e que me avise.
I’m running Windows XP Pro SP2 with all the latest updates. Estou rodando Windows XP Pro SP2 com todas as atualizações mais recentes. 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. Eu mudei minha lote e ainda não funcionou e eu me figurava apenas copiar e colar o que você postou e ainda nada.
Could their be any AV software that could be blocking this? Poderia ser qualquer AV seu software que poderia ser este bloqueio?
Again thanks for your help Novamente obrigado pela vossa ajuda
hm I was messing around with this some more. hm eu fui brincar com esta em torno de alguns mais. I have a folder on my Desktop with FirefoxPortable Eu tenho uma pasta no meu Desktop com FirefoxPortable
start “” “C:\Documents and Settings\pgastwirth\Desktop\firefox 3 beta5\FirefoxPortableTest\FirefoxPortable.exe” "arranque" "C: \ Documents and Settings \ pgastwirth \ Desktop \ firefox 3 beta5 \ FirefoxPortableTest \ FirefoxPortable.exe"
This opens up fine. Isso abre multa. But I still get errors for these Mas eu continuo a ganhar por esses erros
start “” “C:\Program Files\Microsoft Office\Office11\Outlook.exe” "arranque" "C: \ Arquivos de programas \ Microsoft Office \ Office11 \ Outlook.exe"
start “” “C:\Program Files\Mozilla Firefox\firefox.exe” "arranque" "C: \ Arquivos de programas \ Mozilla Firefox \ firefox.exe"
I keep checking my file paths to make sure that they are correct. Eu a verificar meu arquivo caminhos para se certificar de que eles estão corretos.
Oh well, I’ll keep trying. Bem, eu vou tentar manter. Eventually I should get. Eventualmente eu deveria receber. Something can’t be right. Algo não está certo.
Thanks Obrigado
I figured it out. Eu figurava-lo. For some reason when I copied and pasted the code from you site. Por alguma razão quando eu copiado e colado o código do site você. The quotation marks were different characters than when I actually press the quotation key on my keyboard. As aspas foram diferentes personagens do que quando eu realmente pressione a tecla cotação no meu teclado. After I replaced the quotation marks, this batch worked. Depois de substituir as aspas, este lote trabalhado. If anybody wants to open a website add this Se alguém pretende abrir um site adicione essa
Start “” “C:\Program Files\Internet Explorer\iexplore.exe” Iniciar "" "C: \ Arquivos de programas \ 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. Estou adivinhando isso irá fazer o mesmo para o Firefox, mas eu não testou pessoalmente esta questão. Now I’m going to try to get firefox to open up multiple tabs. Agora eu vou tentar fazer com que os firefox para abrir várias abas.
Thanks for all your help with this. Agradecemos a todos os seus ajudar com isso. I knew it was something simple. Eu sabia que era algo simples.
Works absolutely perfect. Obras absolutamente perfeito. Thanks a lot. Thanks a lot.
how would you add a password in the outlook string. como você adicionar uma palavra-passe no panorama string. I have a password I have to enter once outlook opens. Eu tenho uma senha para entrar uma vez abre perspectivas.
Phil, glad you got it working! Phil, satisfeito por a pessoa tem que trabalhar!
Bill, I didn’t know it was possible to password protect Outlook! Bill, eu não sabia que era possível para proteger o Outlook senha! Are you using a third party program? Você está usando um terceiro programa? And you have to enter a password into Outlook before you can view emails? E você tem que digitar uma senha para o Outlook antes que você pode ver e-mails?
Couple of things, Casal de coisas,
just a thought apenas um pensamento
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 Senha proteger o Outlook - apenas terceira parte, mas, depois, se você colocá-lo em um arquivo BAT e manteve-o em formato texto que você seria derrotar o efeito
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) Para abrir Firefox em vários separadores adicionar os vários sites com um símbolo entre as concat urls diff (sua dor Se você fizer um trabalho com múltiplos wdws do Firefox - sempre que você pressione Ctrl N ele começa a nova wdw com duas abas povoadas)
Hey Thanx for the BAT Hey Thanx para o MTD
C:\progra~1 C: \ progra ~ 1
instaed of program files instaed arquivos de programa
works with folders too. Também trabalha com pastas.
Use the entire folder name. Utilize a pasta inteira nome.