windows - Batch script halts after Thunderbird is opened

06
2013-12
  • Željko Filipin

    I want to be able to open Thunderbird from a batch script in Windows. I can do it just fine from command line:

    C:\>"C:\Program Files\Mozilla Thunderbird\thunderbird.exe"
    

    If I create a batch script that looks like this:

    "C:\Program Files\Mozilla Thunderbird\thunderbird.exe"
    

    and execute it from the command line:

    C:\>t.cmd
    C:\>"C:\Program Files\Mozilla Thunderbird\thunderbird.exe"
    

    Thunderbird opens, but the script halts (it does not exit).

    If I close Thunderbird by hand, the script exits.

    It has been a while since I have used batch scripts. Am I doing something wrong?

    Edit: script exits just fine if Thunderbird is already opened. Strange.

  • Answers
  • admintech

    Try

    start /d "C:\Program Files\Mozilla Thunderbird" thunderbird.exe

  • David Spillett

    As Systech suggests, the start command is what you are looking for to run the program and not wait for it to terminate before continuing.

    The reason you see different behaviour when Thunderbird is already running is that it is only allowing one copy to run. The second copy detects the first and gives it focus before going away (so effectively immediately returning control to your batch script). If you were calling an application that allows multiple instances of itself to run (something as simple as notepad would do if you want to test this to see for yourself) you would not see that difference in behaviour.

  • ChrisF

    The reason the script stalls is because it's waiting for Thunderbird to complete and return control to the batch file.

    You need to use the "/d" option as Systech suggests.

  • daddy-o

    FWIW this doesn't work properly in windows7. Even with start /b, Thunderbird terminates when the controlling shell window terminates.

    That said, once you've got T'bird running, you can open other subwindows properly (e.g., thunderbird -addressbook) from the command line.

  • daddy-o

    So, if you want to run T'bird from a windows command line or batch file, I've figured out how to do it. As you probably have noticed, using the start command with any combination of parameters doesn't do what you really want.

    The first step is to create a Windows Scripting Host command file. Put this in the same directory as your T'bird executable, can call it something like tbird.wsf:

    <job>
    <script language="VBScript">
    Set WshShell = CreateObject("WScript.Shell")
    cmds=WshShell.RUN("cmd /c thunderbird.exe", 0, False)
    </script>
    </job>
    

    once you have that file, then invoke it from command line or batch file like this:

    cscript tbird.wsf
    

    Of course, this will leave an extra process hanging around your system that won't die until you close T'bird down. But this does achieve what I think lots of people want.

    davodavo -- check me out on www.saleslogistix.com


  • Related Question

    windows - Batch-file, running application in order vs. all at once
  • ToastMan

    If I create a batch file (batch.bat) and typed this in:

    "C:\Program Files\WinRAR\WinRAR.exe"
    "C:\Windows\System32\notepad.exe"
    

    The applications in question would run in order, first WinRAR would load and once closed, Notepad would load next in order.

    Q: How do I syntax the batch file to run all application at the same time, I want both WinRAR and Notepad to open at the same time.


  • Related Answers
  • Bobby

    Use start instead:

    start "" "command here"
    

    Edit: Do not miss the first pair of empty quotes, this is the title of the process/window.

    start <title> <command> <parameters>
    

    See start /? for further details.

  • Bobby

    create shortcuts to the exectutables and copy them into a folder (i chose Z:\Temp), then use this:

    "z:\temp\NOTEPAD.EXE.lnk"
    "z:\temp\WinRAR.exe.lnk"
    

    Or use Batch Runner, a simple program that enables you to run lots of other programs, in one big batch.