home *** CD-ROM | disk | FTP | other *** search
/ Various Unprotection Examples / unprotect.zip / unprotect / ROBO-UNP / UNP-COP.BAT < prev    next >
DOS Batch File  |  1989-12-23  |  441b  |  19 lines

  1. echo off
  2. if exist robocop.exe goto ok
  3. echo ROBOCOP.EXE not found. Terminating batch file
  4. goto end
  5. :ok
  6. echo This batch file will unprotect ROBOCOP.
  7. echo Please wait, processing.......
  8. ren robocop.exe robocop.dat >NUL
  9. debug robocop.dat < unp.dat >NUL
  10. ren robocop.dat robocop.exe >NUL
  11. echo ROBOCOP is now unprotected!
  12. echo you can now run it without needing disk 4
  13. echo enjoy!
  14. echo .
  15. echo Courtesy of Gumby
  16. pause
  17. :end
  18. echo on
  19.