Questo blog è stato creato come diario persoanle

Questo blog è realizzato come diario personale,per provare le mie
capacità di programmazione e altro

martedì 2 marzo 2010

Spegnimento del PC

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

[STAThread]
static void Main(string[] args)
{
ExitWindowsEx(ExitWindows.LogOff, ShutdownReason.MajorOther & ShutdownReason.MinorOther);
//this will cause the computer to logoff.

}

Nessun commento: