Skip to content

Instantly share code, notes, and snippets.

@paulhayes
Created June 23, 2016 13:34
Show Gist options
  • Select an option

  • Save paulhayes/539ea3d5b3a55cfc703b1fc21ff16c69 to your computer and use it in GitHub Desktop.

Select an option

Save paulhayes/539ea3d5b3a55cfc703b1fc21ff16c69 to your computer and use it in GitHub Desktop.
var psi = new ProcessStartInfo("shutdown","/s /t 0");
psi.CreateNoWindow = true;
psi.UseShellExecute = false;
Process.Start(psi);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment