home *** CD-ROM | disk | FTP | other *** search
- @echo off
- rem ======================================================================
- rem Windows 3.0 Install for SpeedStar 24X
- rem Diamond Computer Systems, Inc. (c) 1992
- rem ======================================================================
- rem %1 contains destination directory
- rem %2 contains current path of GIS.EXE
- rem Windows drivers should be on a separate disk
- rem .
- rem *** WARNING ***
- rem This file MUST be used in conjunction with the SpeedStar 24X
- rem Installation Program. Disk contents may be altered if this is not
- rem followed.
- rem .
-
- rem ** Check for 1654k of free space
- ds %1 1654
- if errorlevel==2 goto InstallError
-
- rem ** Check for directory existance
- cls
- md2 %1 > nul
- if errorlevel==1 goto InstallError
- if errorlevel==0 goto CopyFiles
-
- :CopyFiles
- rem ** Directory is made, change disks
-
- :DoItAgain
- rem ** Call for Disk 2 with Windows 3.0 drivers
- cls
- echo Insert SpeedStar 24X Disk 2 into your floppy drive.
- echo.
- pause
- if not exist \shared.exe goto DoItAgain
- %2\batch\w30.bat %1 %2
- goto Quit
-
- :InstallError
- cls
- echo An installation error has occured. Please make sure you have 1654k
- echo of free memory available on the destination drive.
- echo.
- echo Driver files have NOT been copied. Please re-run the install program.
-
- :Quit
-