home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 24 DOS / 24-DOS.zip / gwosh11k.zip / UNPACK.BAT < prev   
DOS Batch File  |  1993-08-24  |  1KB  |  39 lines

  1. @echo off
  2. if %1==a: goto unpack
  3. if %1==A: goto unpack
  4. if %1==b: goto unpack
  5. if %1--B: goto unpack
  6. echo You must run this batch file from the subdirectory
  7. echo you wish to install Graphic Workshop into. Type 
  8. echo A:UNPACK A:
  9. echo or
  10. echo B:UNPACK B:
  11. goto end
  12. :unpack
  13. echo This is an installation batch file for Graphic Workshop
  14. echo for Windows. It can be used on systems where there is
  15. echo very little memory, such that SETUP will not function.
  16. echo ------------------------------------------------------
  17. pause
  18. expand %1gws.ex_ gws.exe
  19. expand %1gws.wr_ gws.wri
  20. expand %1gws.hl_ gws.hlp
  21. expand %1example1.im_ example1.img
  22. expand %1example1.th_ example1.thn
  23. expand %1example2.th_ example2.thn
  24. expand %1example3.th_ example3.thn
  25. expand %1order.fr_ order.frm
  26. expand %1order.wr_ order.wri
  27. expand %1pcdlib.dl_ pcdlib.dll
  28. copy %1example2.gif example2.gif
  29. copy %1example3.gif example3.gif
  30. if exist %1camera.ex_ expand %1camera.ex_ camera.exe
  31. if exist %1camera.wr_ expand %1camera.wr_ camera.wri
  32. if exist %1pconfig.ex_ expand %1pconfig.ex_ pconfig.exe
  33. if exist %1pconfig.wr_ expand %1pconfig.wr_ pconfig.wri
  34. echo All done
  35. echo You must now return to Windows and create a Program
  36. echo Manager group to contain the files in your Graphic
  37. echo Workshop directory.
  38. :end
  39.