vote up 6 vote down star
2

Possible Duplicates:
How to shutdown the computer from C#
.Net - Restart OS

I have a .NET winforms application that needs to be able to reboot the computer. Is there a way to make this happen programmatically or do I need to exec a command or access the WIN32 API?

flag

2  
Also stackoverflow.com/questions/102567/… – Kyle Rozendo Sep 15 at 19:19

closed as exact duplicate by Vinko Vrsalovic, Chris Farmer, Josh Stodola, sth, Shog9 Sep 16 at 14:38

8 Answers

vote up 13 vote down check

You can use the Diagnosics, Process, Start and pass it ShutDown

System.Diagnostics.Process.Start("ShutDown", "/r")

Other options include

  • /s = shutdown

  • /r = restart

  • /t = timed shutdown

Code snippet from social.msdn

link|flag
3  
This is effectively calling shutdown.exe and might not work if there are unusual permissions settings. – Vinko Vrsalovic Sep 15 at 19:20
Also not all windows machines have the shutdown command. – stimms Sep 15 at 19:34
vote up 0 vote down
MessageBox.Show(this, "Please reboot your computer now", 
                "Reboot required", 
                MessageBoxButtons.OK,
                MessageBoxIcon.Asterisk, 
                MessageBoxDefaultButton.Button1, 
                MessageBoxOptions.RightAlign);
link|flag
Is this a joke? – Josh Stodola Sep 15 at 19:32
of course it is – Carson Myers Sep 15 at 19:39
vote up 0 vote down

The native API ExitWindowsEx can be used to do this, pinvoke.net has a sample signature.

link|flag
vote up 3 vote down

You can use the Windows API. Example here.

[DllImport("user32.dll")]
public static extern int ExitWindowsEx(int uFlags, int dwReason);

ExitWindowsEx(2, 0);
link|flag
vote up 2 vote down

See the accepted answer in this very similar post:

http://stackoverflow.com/questions/102567/how-to-shutdown-the-computer-from-c

Change

mboShutdownParams["Flags"] = "1";

to

mboShutdownParams["Flags"] = "2";

link|flag
WMI does it all now, doesn't it? :-) Great! – Vinko Vrsalovic Sep 15 at 19:22
vote up 3 vote down
    [StructLayout(LayoutKind.Sequential, Pack = 1)]

    internal struct TokPriv1Luid

    {

        public int Count;

        public long Luid;

        public int Attr;

    }



    [DllImport("kernel32.dll", ExactSpelling = true)]

    internal static extern IntPtr GetCurrentProcess();



    [DllImport("advapi32.dll", ExactSpelling = true, SetLastError = true)]

    internal static extern bool OpenProcessToken(IntPtr h, int acc, ref IntPtr phtok);



    [DllImport("advapi32.dll", SetLastError = true)]

    internal static extern bool LookupPrivilegeValue(string host, string name, ref long pluid);



    [DllImport("advapi32.dll", ExactSpelling = true, SetLastError = true)]

    internal static extern bool AdjustTokenPrivileges(IntPtr htok, bool disall,

    ref TokPriv1Luid newst, int len, IntPtr prev, IntPtr relen);



    [DllImport("user32.dll", ExactSpelling = true, SetLastError = true)]

    internal static extern bool ExitWindowsEx(int flg, int rea);



    internal const int SE_PRIVILEGE_ENABLED = 0x00000002;

    internal const int TOKEN_QUERY = 0x00000008;

    internal const int TOKEN_ADJUST_PRIVILEGES = 0x00000020;

    internal const string SE_SHUTDOWN_NAME = "SeShutdownPrivilege";

    internal const int EWX_LOGOFF = 0x00000000;

    internal const int EWX_SHUTDOWN = 0x00000001;

    internal const int EWX_REBOOT = 0x00000002;

    internal const int EWX_FORCE = 0x00000004;

    internal const int EWX_POWEROFF = 0x00000008;

    internal const int EWX_FORCEIFHUNG = 0x00000010;



    public static Thread thread1;



    static void DoExitWin(int flg)

    {

        bool ok;

        TokPriv1Luid tp;

        IntPtr hproc = GetCurrentProcess();

        IntPtr htok = IntPtr.Zero;

        ok = OpenProcessToken(hproc, TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, ref htok);

        tp.Count = 1;

        tp.Luid = 0;

        tp.Attr = SE_PRIVILEGE_ENABLED;

        ok = LookupPrivilegeValue(null, SE_SHUTDOWN_NAME, ref tp.Luid);

        ok = AdjustTokenPrivileges(htok, false, ref tp, 0, IntPtr.Zero, IntPtr.Zero);

        ok = ExitWindowsEx(flg, 0);

    }

see here

link|flag
vote up 2 vote down

The simplest way would be:

System.Diagnostics.Process.Start("ShutDown", "/r");

If you want to shutdown instead:

System.Diagnostics.Process.Start("ShutDown", "/s");

List of arguments:

No args    Display help. This is the same as typing /?.
/?         Display help. This is the same as not typing any options.
/i         Display the graphical user interface (GUI).
           This must be the first option.
/l         Log off. This cannot be used with /m or /d options.
/s         Shutdown the computer.
/r         Shutdown and restart the computer.
/g         Shutdown and restart the computer. After the system is
           rebooted, restart any registered applications.
/a         Abort a system shutdown.
           This can only be used during the time-out period.
/p         Turn off the local computer with no time-out or warning.
           Can be used with /d and /f options.
/h         Hibernate the local computer.
           Can be used with the /f option.
/e         Document the reason for an unexpected shutdown of a computer.
/m \\computer Specify the target computer.
/t xxx     Set the time-out period before shutdown to xxx seconds.
           The valid range is 0-600, with a default of 30.
           Using /t xxx implies the /f option.
/c "comment" Comment on the reason for the restart or shutdown.
           Maximum of 512 characters allowed.
/f         Force running applications to close without forewarning users.
           /f is automatically set when used in conjunction with /t xxx.
/d [p|u:]xx:yy  Provide the reason for the restart or shutdown.
           p indicates that the restart or shutdown is planned.
           u indicates that the reason is user defined.
             if neither p nor u is specified the restart or shutdown is unplanned.
           xx is the major reason number (positive integer less than 256).
           yy is the minor reason number (positive integer less than 65536).
link|flag
it works only for xp – ArsenMkrt Sep 15 at 19:22
I just tried it on Vista and it works just fine. The list of arguments above are from a Vista machine. – Druid Sep 15 at 19:23
I mean XP and above – ArsenMkrt Sep 16 at 6:55
vote up 0 vote down

There's a good way to do it here that I have used in the past.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.