How to open multiple programs in Windows at once windows를 여는 방법을 한 번에 여러 개의 프로그램에서

Posted on April 7, 2008 at 5:22 am 게재된 2008년 4월 7일은 오전 5시 22분

Why would you ever want to open multiple programs at once in 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. 최근에, 나는 그들이 얼마나 물어 내 사무실에서 누군가는 여러 데스크톱 응용 프로그램을 열 수있습니다를 클릭하지 않고 한 번에 각 응용 프로그램을 개별적으로합니다.

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. 일반적으로, 나는 그 사람 게으른 사람에게 전화가 그들을 멈추게하고 괴롭히고 있다고 말했지만 반복적인 작업을하고 있으므로이 작업을 수행하는 데 필요한 사람이 동일한 응용 프로그램을 여십시오 매일 나는 때우기 줄 수있는 솔루션.

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). 나 또한 부부의 프로그램을 열어 결과, 일반적으로 매일 아침 나는 무슨 : firefox에 대한 인터넷 브라우징, 전망을 확인 이메일을 작성하기위한 시각적 foxpro 코드 (이후 나는 프로그래머). 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! 그래서 대신에 3 개의 아이콘을 클릭하면, 나는 무엇이라고 부르는 배치 파일을 작성하기로했다 열기를 내 모두 3 개의 애플 리케이션을 동시에!

You can create batch files in Windows XP and Vista very easily, all you need is Notepad! 배치 파일을 만들 수있습니다 windows xp, 비스타 아주 쉽게, 모든 당신이 필요로하는 것은 메모장을!

How to create a batch file in Windows 일괄 파일을 만드는 방법에 windows

1. Open up Notepad 메모장을 열어

2. Copy and paste the line below as the first line in the file: 아래 라인을 복사 및 붙여넣기에 파일의 첫번째 라인 :

@echo off @ 에코 해제

Echo off basically tells Windows to not give you any messages or popup windows when running the commands in the batch file. 에코 해제 창 기본적으로 설명해야 할 의무를 갖게되는 것은 아니 메시지 또는 팝업 창이 배치 파일에서 명령을 실행하는 경우.

3. Now we need to actually call the executables for the three programs that we want to open. 이제 우리의 필요를 실제로 실행 파일을 호출합니다 열기를 우리가 원하는 3 개의 프로그램을합니다. So in our example, I want to open Firefox, Outlook, and Foxpro. 그래서 우리 들어, firefox 열고 싶다, 전망, 그리고 foxpro합니다. The next three lines would look like this: 다음 3 개의 라인이 모양이 :

start “Firefox” “C:\Program Files\Mozilla Firefox 3 Beta 3\firefox.exe” 시작 "firefox" "c : \ 프로그램 파일 \ 모질라 firefox 3 베타 3 \ firefox.exe"
start “Outlook” “C:\Program Files\Microsoft Office\Office12\Outlook.exe” "시작 전망" "c : \ 프로그램 파일 \ 마이크로 소프트 사무실 \ office12 \ outlook.exe"
start “Foxpro” “C:\Program Files\Microsoft Visual FoxPro 9\vfp9.exe” "시작 foxpro" "c : \ 프로그램 파일 \ 마이크로 소프트 비주얼 foxpro 9 \ vfp9.exe"

There are three parts to each command above and here’s what it means: 각 명령에는 위의 3 개 부품을 그리고 여기가 무슨 뜻 :

start - That is the command used in batch files to open programs 시작 - 그것은 명령을 배치 파일에 사용된 프로그램을 열기를

“App Name” - The second parameter is the name of the application you are going to be opening. "프로그램 이름이"- 두 번째 매개 변수는 응용 프로그램의 이름을 여는가 될 것이다. You can put any name you like here since it only uses this parameter for title purposes. 어떠한 이름을 넣을 수있습니다 그것은 단지부터 여기에 원하는 제목을 사용 목적에 대한이 매개 변수를합니다.

“App Path” - The last parameter is the actual path to the executable file for the program. "응용 프로그램 경로"- 마지막 매개 변수는 실행 파일의 경로를 실제로이 프로그램을 위해합니다. You can always find the path of a program by right-clicking on the icon and going to Properties . 언제든지 찾을 수있는 프로그램의 경로를 오른쪽 - 클릭하여 아이콘을 클릭하고 등록 정보를하려고합니다. For example, if I wanted to know the path to the executable file for Firefox, I would right-click and choose Properties. 예를 들어, 만약 실행 파일에 대한 경로를 알고 싶어 파이어 폭스에서는 제가 오른쪽 - 클릭하고 등록 정보를 선택하십시오.

등록 정보를

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. 이제 모든 나는 경로를 볼 필요가 대상 상자에서 내 안으로, 간단하게 배치 파일을 복사 및 붙여넣기 스크립트를합니다.

firefox 경로를

So now your batch file should look something like this: 그래서 지금 당신의 배치 파일을 보여야 적들역시 :

배치 파일을

Now all you have to do is actually save it as a batch file, which is very easy. 지금 우리가 할 수있는 배치 파일을 저장하는 등의 필요가 실제로는 매우 쉽습니다. Go to File and click Save As . 이동하여 파일을 다른 이름으로 저장을 클릭하십시오. Give your file a name like “ TEST.BAT “. 귀하의 파일을 이름을주는 "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. 나는 이유를 확실히 모르겠지만, 내 firefox, 전망과 애플 리케이션을 foxpro 내의 모든 부하 2-3초 반면 그들을 개별적으로 열려면, 각 1은 적어도 5 초.

Anyone else ever create their own batch file and if so, what did you use it for? 다른 사람도 자신의 배치 파일을 작성 및 그렇다면, 왜 그것을 사용했습니까? Enjoy! 즐거운 시간 되십시오!

Technorati Tags: technorati 태그 : , , ,

If you enjoyed this post, make sure you 이 게시물에 즐거워하는 경우, 있는지 확인하십시오 subscribe to my RSS feed 내 피드 구독하려면 ! !

» Filed Under »소송 아래에 Computer Tips 컴퓨터 팁

Related Posts 관련 게시물

6 Responses to “How to open multiple programs in Windows at once” 6 반응을 "windows를 여는 방법을 한 번에 여러 개의 프로그램에서"

  1. Phil said on : 필에 따르면 :

    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” "시작 전망" "c : \ 프로그램 파일 \ 마이크로 소프트 사무실 \ office11 \ outlook.exe"
    start“Firefox””C:\Program Files\Mozilla Firefox\firefox.exe” 시작 "firefox" "c : \ 프로그램 파일 \ 모질라 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? 또한 귀하의 예제는 office12 내 exe 파일을 뭐라고해야하는데 그것은 office11 폴더?


  2. akishore akishore said on : 일 밝혔다 :

    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” "시작 전망" "c : \ 프로그램 파일 \ 마이크로 소프트 사무실 \ office11 \ outlook.exe"
    start “Firefox” ”C:\Program Files\Mozilla Firefox\firefox.exe” 시작 "firefox" "c : \ 프로그램 파일 \ 모질라 firefox \ firefox.exe"

    Notice that I just added spaces between start and word “Outlook” and then between “Outlok” and the phrase “C:\Program…\”. 주의 사항이 단지 시작과 사이에 공백이 입력된 단어 "전망"을 선택한 다음 사이 "outlok"및라는 문구가 "c : \ 프로그램을… \"합니다.

    And that’s fine that your Office executable are in Office11, it just depends on which version you have installed on your computer. 그리고 당신의 사무실이 실행은 괜찮 아요 office11, 그냥 따라 달라집니다 어떤 버전이 컴퓨터에 설치되어있습니다. Office12 is for Office 2007. office12 사무실은 2007.

    Let me know if you were able to get it working or not. 알려주세요 작동하는 경우 아니든 얻을 수 있었다. Thanks! 감사합니다!


  3. Phil said on : 필에 따르면 :

    Okay, I was wondering if the office12 was for 2007. 좋아, 나는 office12이 경우에는 2007 년 궁금합니다.

    I added the spaces and I get 1 error for each of programs I am trying to open. 나는 1 오류에 대한 추가 공백이와 난 각각의 프로그램을 얻을를 엽니다 난 노력합니다. I copied the targets directly from the properties window. 나의 등록 정보 창에서 직접 복사 목표물을합니다.

    This is the message I get: 이것은 메시지를 좀 :
    Windows cannot find oFirefoxo. ofirefoxo 찾을 수 없다. Make sure you typed the name correctly, and then try again. 이름을 올바르게 입력했는지 확인하고 다시 시도하십시오. To search for a file,… 파일을 검색하려면,…

    Any ideas? 좋은 아이디어 없나?

    Thanks! 감사합니다!


  4. akishore akishore said on : 일 밝혔다 :

    Hi Phil, 안녕하세요 필,

    What is the version of your OS? 버전의 운영 체제는 무엇입니까? Are you running Windows XP or Vista? windows xp 또는 비스타 실행 중입니까? 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” 시작 "c : \ 프로그램 파일 \ 마이크로 소프트 사무실 \ office11 \ outlook.exe"
    start “C:\Program Files\Mozilla Firefox\firefox.exe” 시작 "c : \ 프로그램 파일 \ 모질라 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. 기본적으로, 나는 시작부터 첫 번째 매개 변수를 제거 라인 그러니까 그저 읽기 시작한 후 공간 그리고 exe 파일에 대한 경로 이름을 인용합니다. Try that and let me know. 한 번 시도해 및 알려주세요.


  5. Phil said on : 필에 따르면 :

    I’m running Windows XP Pro SP2 with all the latest updates. 전 windows xp 프로 SP2를 실행하고있는 최신 업데이 트를 모두합니다. 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. 나는 내 배치 파일을 변경 그리고 아직도 못 직장과 같아서 난 그냥 복사 및 붙여넣기 무슨 게시된 그리고 아직도 아무것도합니다.
    Could their be any AV software that could be blocking this? 자신의 될 수도를 차단도 될 수있는 모든 유명 소프트웨어를이?
    Again thanks for your help 또 도와 주셔서 감사합니다


    Pingbacks 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 알 이니 하단 en varios programas abrir cómo windows»zona 베르크 소프트웨어를 블로그에 프리웨어 programas 셰어웨어 bajar 무료 인터넷 컴퓨터 windows utilidades 멀티미디어 programas 무료 descargar Says: 내용 :

    […] en: Online Tech Tips. […] en : 온라인 테크 팁. […]

Please post your comments/suggestions! 게시물하시기 바랍니다 귀하의 의견 / 제안!