home *** CD-ROM | disk | FTP | other *** search
- @ECHO OFF
-
- REM
- REM INSTALL.CMD <CD-ROM drive> <target HD drive + directory>
- REM
-
- if (%2) == () goto USAGE
-
- echo.
- echo Copying all files from %1 to %2
- echo.
-
- REM To copy all files physically:
- REM
- copy %1\OS2\ENGLISH\Gear.DAT %2\Gear.DAT
- copy %1\OS2\ENGLISH\Gear.INI %2\Gear.INI
- copy %1\OS2\ENGLISH\GearDrv.SYS %2\GearDrv.SYS
- copy %1\OS2\ENGLISH\Release.TXT %2\Release.TXT
- copy %1\OS2\ENGLISH\Gearcdr.CFG %2\Gearcdr.CFG
- copy %1\OS2\ENGLISH\GearOS2.EXE /B + %1\OS2\ENGLISH\GearOS2.E2_ /B %2\GearOS2.EXE
-
- REM
- REM Manually edit the Config.SYS for the following:
- REM
- REM BASEDEV=OS2ASPI.DMD
- REM DEVICE=<target HD drive + directory>\GearDrv.SYS
- REM SET GEARDIR=<target HD drive + directory>
- REM
-
- REM
- REM To manually create Workplace Shell folder and icons do:
- REM
- REM From the templates folder take the template called 'Folder'
- REM and drop it on the Desktop. Give it the name you want (the
- REM Setup calls it "Gear for OS/2 Warp"). Open this folder as well
- REM as the <target HD drive + directory> folder.
- REM From the <target HD drive + directory> folder create shadows
- REM for the objects you want. (Setup does it fot the .EXE, .INI and
- REM .TXT files.)
- REM A shadow of an object can be created by selecting the object and
- REM then pressing the right mouse button on it. Select "Create
- REM shadow..." from the menu and in the dialog that appears after
- REM that select your own (brand new) Desktop folder created before.
- REM
-
- goto END
-
- :USAGE
- echo.
- echo "Usage: %0 <CD-ROM drive> <target HD drive + directroy>"
- echo.
- goto END
-
- :END