home *** CD-ROM | disk | FTP | other *** search
/ Software Buyer's Guide Volume 7 #1 / Software_Buyers_Guide_Volume_7_Number_1_SelectWare_Technologies_1995.iso / ado10004 / swtdemo.bat < prev    next >
DOS Batch File  |  1993-12-09  |  753b  |  36 lines

  1. @echo off
  2. :start
  3. cls
  4. echo.
  5. echo Welcome to Adobe Systems Inc.
  6. echo    Photoshop for Windows.
  7. echo.
  8. echo Photoshop will install to the location specified and create a group
  9. echo icon in windows that will not be removed by the demonstration system.
  10. echo.
  11. echo Please choose one of the selections below:
  12. echo.
  13. echo     1. Run Photoshop for Windows, Tryout Version 2.5.1.
  14. echo           Note: May change current Adobe Photoshop windows settings.
  15. echo     2. Quit
  16. echo.
  17. echo     Please enter the number for your choice;
  18. query
  19.  
  20. if errorlevel = 2 goto end
  21. if errorlevel = 1 goto run
  22.  
  23. echo Unavailable choice.
  24. pause
  25. goto start
  26. goto end
  27.  
  28. :run
  29. cls
  30. echo Loading Windows  Alt-F4 to Exit Windows
  31. pause
  32. WIN SETUP.EXE
  33. goto end
  34.  
  35. :end
  36.