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.
次のようなものを呼び出すと:
Process.Start("shutdown", "/s /t 60");
「お使いのコンピューターは 1 分以内にシャットダウンします」などのメッセージが表示されたアラート メッセージ ボックスが表示されます。それが表示されないようにするにはどうすればよいですか?ウィンドウをシャットダウンする別の方法はありますか?
あなたは書ける:
Process.Start("shutdown", "/p");
試す:
Process.Start("shutdown", "-f -t 0");