home *** CD-ROM | disk | FTP | other *** search
/ Computer Tool Software / soft.iso / Cdr / GEARCD / OS2 / INSTALL.CMD < prev    next >
Encoding:
Text File  |  1996-04-13  |  1.6 KB  |  55 lines

  1. @ECHO OFF
  2.  
  3. REM
  4. REM    INSTALL.CMD   <CD-ROM drive>  <target HD drive + directory>
  5. REM
  6.  
  7. if (%2) == () goto USAGE
  8.  
  9. echo.
  10. echo Copying all files from %1 to %2
  11. echo.
  12.  
  13. REM To copy all files physically:
  14. REM
  15. copy %1\OS2\ENGLISH\Gear.DAT    %2\Gear.DAT
  16. copy %1\OS2\ENGLISH\Gear.INI    %2\Gear.INI
  17. copy %1\OS2\ENGLISH\GearDrv.SYS    %2\GearDrv.SYS
  18. copy %1\OS2\ENGLISH\Release.TXT    %2\Release.TXT
  19. copy %1\OS2\ENGLISH\Gearcdr.CFG %2\Gearcdr.CFG
  20. copy %1\OS2\ENGLISH\GearOS2.EXE    /B + %1\OS2\ENGLISH\GearOS2.E2_    /B %2\GearOS2.EXE
  21.  
  22. REM
  23. REM    Manually edit the Config.SYS for the following:
  24. REM
  25. REM        BASEDEV=OS2ASPI.DMD
  26. REM        DEVICE=<target HD drive + directory>\GearDrv.SYS
  27. REM        SET GEARDIR=<target HD drive + directory>
  28. REM
  29.  
  30. REM
  31. REM    To manually create Workplace Shell folder and icons do:
  32. REM
  33. REM        From the templates folder take the template called 'Folder'
  34. REM        and drop it on the Desktop. Give it the name you want (the
  35. REM        Setup calls it "Gear for OS/2 Warp"). Open this folder as well
  36. REM        as the <target HD drive + directory> folder.
  37. REM        From the <target HD drive + directory> folder create shadows
  38. REM        for the objects you want. (Setup does it fot the .EXE, .INI and
  39. REM        .TXT files.)
  40. REM        A shadow of an object can be created by selecting the object and
  41. REM        then pressing the right mouse button on it. Select "Create 
  42. REM        shadow..." from the menu and in the dialog that appears after
  43. REM        that select your own (brand new) Desktop folder created before.
  44. REM
  45.  
  46. goto END
  47.  
  48. :USAGE
  49. echo.
  50. echo "Usage:    %0  <CD-ROM drive>  <target HD drive + directroy>"
  51. echo.
  52. goto END
  53.  
  54. :END
  55.