home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
-
- echo.
- echo Ironman's Offroad Racer - Hard disk installation program
- echo.
- echo Command line format: Install {Source:} {Destination:\fullpath}
- echo e.g Install a: c:\games
- echo.
-
- rem If 1st parameter is OK, then assume command line is correct
- if %1\ == a:\ goto Ok
- if %1\ == b:\ goto Ok
- if %1\ == c:\ goto Ok
- if %1\ == d:\ goto Ok
- if %1\ == e:\ goto Ok
- if %1\ == f:\ goto Ok
- echo Missing or faulty parameters
- goto end
-
-
- :Ok
- echo.
- echo Please insert disk 1 into drive
- pause
- md %2\ironman
- copy %1\*.* %2\ironman
-
- rem If installed from 3.5 inch disk, then all files copied already
- if exist %2\ironman\track0.xx goto Complete
- echo.
-
- echo Please insert disk 2 into drive (detached drive)
- pause
- copy %1\*.* %2\ironman
- echo.
-
-
- :Complete
- echo Installation complete
- echo.
-
- :End