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.
PATH環境変数に含まれているディレクトリにアプリケーションがあります。したがって、DOSコマンドラインを使用して任意のディレクトリから呼び出された場合、起動は成功します。
.NETアプリで同じことを実現する最も簡単な方法は何ですか?
この構文でCMDコマンドを使用してみることができます
Process.Start("CMD", "/C you_app_name.exe");
これは静的メソッドであり、2つの引数が必要です。
CMD / C your_app_name.exeを使用して、コマンドインタープリターの別のインスタンスを起動し、アプリケーションを実行して終了するように要求します。