home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer 13 / 1995-12_Disc_13.iso / patches / dawnpupd.zip / INSTALCD.BAT next >
DOS Batch File  |  1995-02-26  |  552b  |  33 lines

  1. @echo off
  2. if "%1"=="" goto syntax
  3. if "%2"=="" goto syntax
  4. goto start3
  5.  
  6. :syntax
  7. cls
  8. echo Syntax: INSTALCD C:\PATH\DAWNPTRL D: <Return>
  9. goto end
  10.  
  11. :error1
  12. echo Error: Dawn Patrol not installed at %1
  13. goto end
  14.  
  15. :error2
  16. echo Error: Dawn Patrol CD-ROM not found in Drive %2
  17. goto end
  18.  
  19. :start3
  20. if not exist %1\patrol.exe goto error1
  21. if not exist %2\install.exe goto error2
  22. goto start4
  23.  
  24. :start4
  25. cls
  26. update -d -o %1
  27. echo Please run CDPATCH from %1 to install changes, and then run SVGATEST and
  28. echo PATROL ? again.
  29. goto end
  30. :end
  31.  
  32.  
  33.