Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
最小化または非表示にしたコンソールアプリを起動するには、どのパラメーターを使用する必要がありますか?
これはサードパーティのプログラムを使用せずに可能ですか?
バッチファイル付き
start /min c:\windows\cmd.exe
次に、必要なパラメータをcmd.exeに渡すことができます。次に例を示します。
コマンドを処理してから閉じるには:
start /min c:\windows\cmd.exe /c dir
コマンドを処理するが開いたままにするには:
start /min c:\windows\cmd.exe /k dir