Execute Batch file in Silent mode (no cmd window) / 以無 dos 命令列視窗執行 .bat

今天無意中看到正解,沒想到超簡單,不必用以前的蠢方法啦!

----- without a window-----
@echo off
start /B Myapp.exe


---- minimized ----
@echo off
start /MIN Myapp.exe