Possible Duplicate:
How to shutdown the computer from C#
I want to bring up a restart computer message box after an event occurs in my Win Form application. What command can I use to restart the computer if the user chooses Yes?
I want to bring up a restart computer message box after an event occurs in my Win Form application. What command can I use to restart the computer if the user chooses Yes? |
|||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
You can p/invoke As noted, you'll need to call A whole bunch of information available on MSDN here |
||||
|
|
|
you should use WINAPI . the below function can do power task for you :
Note that this function is in user32.dll. Simply to restart :
Here is the full list of flags : link to msdn Now here is sample C# Code for this :
|
|||||||||||
|
|
|||
|
|
This particular solution worked for me: http://stackoverflow.com/a/102583/1505128
|
|||
|
|