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.