Skip to content

Instantly share code, notes, and snippets.

@kusa-mochi
Created September 21, 2018 15:26
Show Gist options
  • Save kusa-mochi/748d01b390f45041cc377e7804a7bfbb to your computer and use it in GitHub Desktop.
Save kusa-mochi/748d01b390f45041cc377e7804a7bfbb to your computer and use it in GitHub Desktop.
System.Diagnostics.Process p = new System.Diagnostics.Process();
p.StartInfo.FileName = "shutdown"; // コマンド名
p.StartInfo.Arguments = "-r -f"; // オプション
p.StartInfo.CreateNoWindow = true; // 黒い画面は表示しない。
p.StartInfo.UseShellExecute = false; // プロセスを新しいウィンドウで起動しない。
p.Start();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment