Skip to content

Instantly share code, notes, and snippets.

View samartzidis's full-sized avatar

George Samartzidis samartzidis

View GitHub Profile
@samartzidis
samartzidis / sleep.c
Last active February 13, 2021 13:32
Set Windows sleep mode snippet
// The simplest, no hassle, Windows sleep.exe command.
//
// Compile with:
// cl.exe sleep.c /c /O1 /GS- /Oi-
// link.exe /NODEFAULTLIB /ENTRY:main /subsystem:windows sleep.obj user32.lib kernel32.lib PowrProf.lib
#include "windows.h"
#include "powrprof.h"
void main()