Ok, this is simple C++ for shutting down ur comp. Code: #include <windows.h> #include <stdio.h> int main (void){ char message[]="HOLD DOWN YOUR POWER BUTTON TO SAVE YOUR COMPUTER"; char title[]="HOLY SHIT YOU HAVE A VIRUS"; MessageBox(NULL,message,title,MB_OK); }