home *** CD-ROM | disk | FTP | other *** search
/ Computer Faire & BEXA 1996 / cfaire96.iso / text / install.bat < prev    next >
DOS Batch File  |  1996-03-15  |  883b  |  41 lines

  1. @echo off
  2.  
  3. if !%1! == !! install C:\MAXIMA
  4.  
  5. echo Welcome to the Maxima QX electronic brochure installation.
  6. echo.
  7. echo This brochure is about to install into 
  8. echo              %1
  9. echo If you are happy with this then press any key.
  10. echo If you would like to stop now press Ctrl and C together then 
  11. echo        press 'y' to terminate the batch job.
  12. pause >nul
  13.  
  14. md %1
  15. qx %1
  16. if errorlevel==1 goto error
  17.  
  18. echo.
  19. echo To read all about the new Maxima QX go to %1
  20. echo and type QX then press enter.
  21. echo.
  22. echo For any technical assistance please call 
  23. echo         Graphics Image Technologies 
  24. echo               (011) 880-2168
  25. echo.
  26. c:
  27. cd %1
  28. goto end
  29.  
  30. :error
  31. echo.
  32. echo There appears to have been a problem during installation.
  33. echo please call 
  34. echo            Graphics Image Technologies 
  35. echo                   (011) 880-2168
  36. echo.
  37. pause
  38.  
  39. :end
  40.  
  41.