home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer 13 / 1995-12_Disc_13.iso / patches / dawnpupd.zip / INSTALPC.BAT < prev    next >
DOS Batch File  |  1995-02-24  |  450b  |  28 lines

  1. @echo off
  2. if "%1"=="" goto define
  3. goto ready
  4.  
  5. :define
  6. cls
  7. echo Syntax:  INSTALPC C:\PATH\DAWNPTRL
  8. goto end
  9.  
  10. :error
  11. cls
  12. echo Error: Dawn Patrol not found at %1
  13. goto end
  14.  
  15. :ready
  16. cls
  17. IF NOT EXIST %1\PATROL.EXE goto error
  18. cls
  19. echo Dawn Patrol update is now being installed to %1
  20. update -d -o %1
  21. del %1\cdpatch.bat
  22. echo Installation complete. Please log onto hard disk and run SVGATEST 
  23. echo and PATROL ? again.
  24. goto end
  25.  
  26. :end
  27.  
  28.