-2

I'm making something to prank my friend when he finishes a game I'm making his computer will shut off. But I don't know where to start.

Tomaatje07
  • 49
  • 5

2 Answers2

1

You can use ExitWindowsEx to shut down the local computer.

Blindy
  • 65,249
  • 10
  • 91
  • 131
1

Try this code:

using System.Diagnostics;
using System.Runtime.InteropServices; 

Process.Start("shutdown","/s /t 0");