Thunderbird 在批处理脚本中撰写电子邮件 - 继续执行下一个命令

Mec*_*ash 6 thunderbird batch-file

在批处理脚本中使用以下行来调用 Thunderbird 并撰写电子邮件:

thunderbird.exe -compose "to='email@domain.com',subject='Some Subject',preselectid='id1',body='Message Body',attachment='File.txt'"
Run Code Online (Sandbox Code Playgroud)

该命令执行得非常好,但是批处理脚本将不会继续,直到应用程序终止。有没有办法绕过这个问题,以便脚本继续执行下一个命令?

Cha*_*esB 4

start /b在命令之前使用,批处理脚本将在启动进程后继续执行。