home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM Today - The Disc! 6 / CD-ROM_Today_-_The_Disc_6_December_1994.iso / pc / sc / scinstd.bat < prev    next >
DOS Batch File  |  1994-10-17  |  394b  |  30 lines

  1. @echo off
  2.  
  3. REM JGP:)
  4.  
  5. cls
  6. echo This program will take about 3Mb of hard drive space! 
  7. echo (Type ctrl+C to stop installation)
  8. pause
  9.  
  10.  
  11.  
  12. md c:\sc
  13. copy d:\sc\*.* c:\sc
  14. attrib -r c:\sc\*.* /s
  15. c:
  16. cd \sc
  17. setup.exe
  18. echo Would you like to run Star Crusader now?
  19. choice /c:YN Yes or No?
  20. if errorlevel 2 goto end
  21. if errorlevel 1 goto runc
  22. :runc
  23. sc.com
  24. goto end
  25.  
  26.  
  27. :end
  28. pause
  29.  
  30.