What's the best way to shutdown the computer from a C# program?
I've found a few methods that work - I'll post them below - but none of them are very elegant. I'm looking for something that's simpler and natively .net.
|
feedback
|
|
Works starting with windows XP, not available in win 2000 or lower: This is the quickest way to do it:
Otherwise use P/Invoke or WMI like others have said. | |||||
feedback
|
|
Taken from: a Geekpedia post This method uses WMI to shutdown windows. You'll need to add a reference to System.Management to your project to use this.
| |||||
feedback
|
|
This thread provides the code necessary: http://bytes.com/forum/thread251367.html but here's the relevant code:
Usage:
or
| ||||
|
feedback
|
|
Different methods: A. System.Diagnostics.Process.Start("Shutdown", "-s -t 10"); B. Windows Management Instrumentation (WMI) http://www.csharpfriends.com/Forums/ShowPost.aspx?PostID=36953 http://www.dreamincode.net/forums/showtopic33948.htm C. System.Runtime.InteropServices Pinvoke http://bytes.com/groups/net-c/251367-shutdown-my-computer-using-c D. System Management http://www.geekpedia.com/code36_Shut-down-system-using-Csharp.html After I submit, I have seen so many others also have posted... | |||
|
feedback
|
|
The old-school ugly method. Use the ExitWindowsEx function from the Win32 API.
In production code you should be checking the return values of the API calls, but I left that out to make the example clearer. | |||
|
feedback
|
|
I tried roomaroo's WMI method to shutdown Windows 2003 Server, but it would not work until I added `[STAThread]' (i.e. "Single Threaded Apartment" threading model) to the Main() declaration:
I then tried to shutdown from a thread, and to get that to work I had to set the "Apartment State" of the thread to STA as well:
I'm a C# noob, so I'm not entirely sure of the significance of STA threads in terms of shutting down the system (even after reading the link I posted above). Perhaps someone else can elaborate...? | ||||
|
feedback
|
|
There is no .net native method for shutting off the computer. You need to P/Invoke the ExitWindows or ExitWindowsEx API call. | |||
|
feedback
|
|
Note that shutdown.exe is just a wrapper around InitiateSystemShutdownEx, which provides some niceties missing in ExitWindowsEx | |||
|
feedback
|
|
You can launch the shutdown process:
| ||||
|
feedback
|
|
Short and sweet. Call an external program:
Note: This calls Windows' Shutdown.exe program, so it'll only work if that program is available. You might have problems on Windows 2000 (where shutdown.exe is only available in the resource kit) or XP Embedded. | |||
|
feedback
|
|
What Jekke said. P/Invoke. | |||
|
feedback
|
|
**Elaborated Answer...
| ||||
|
feedback
|
|
If you want to shut down computer remotely then you can use
on any button click
| ||||
|
feedback
|
|
I had trouble trying to use the WMI method accepted above because i always got privilige not held exceptions despite running the program as an administrator. The solution was for the process to request the privilege for itself. I found the answer at http://www.dotnet247.com/247reference/msgs/58/292150.aspx written by a guy called Richard Hill. I've pasted my basic use of his solution below in case that link gets old.
| |||
|
feedback
|