home *** CD-ROM | disk | FTP | other *** search
/ Season's Greetings & Games Unlimited / UGOLD_cd2.iso / spot / install.spk < prev    next >
Text File  |  1994-05-10  |  289b  |  24 lines

  1. @echo off
  2.  
  3. if "%1" == "" goto error
  4.  
  5. cls
  6. echo Installing Cool Spot to %1
  7. echo.
  8.  
  9. md %1
  10. copy *.??? %1  >NUL
  11. cd %1
  12.  
  13. echo ...Mission Accomplished
  14. goto end
  15.  
  16. :error
  17. cls
  18. echo To Install CoolSpot use..  "INSTALL <drv>:\<path>"
  19. echo.
  20. echo  eg.   install c:\spot
  21. echo.
  22.  
  23. :end
  24.