home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
- echo Rodge Rock in Retro Active installation batch (C) 1995
- echo ------------------------------------------------------
- choice /c:CDE Which hard disk do you wish to install Retro Active on
- if errorlevel 3 goto edrive
- if errorlevel 2 goto ddrive
- if errorlevel 1 goto cdrive
- goto endbad
-
- :cdrive
- if not exist c:\nul goto cend
- if exist c:\rodge\rodge.exe goto skip1
- if exist c:\rodge\nul goto end1
- :skip1
- md c:\rodge
- copy *.* c:\rodge
- c:
- cd \rodge
- goto ennd
-
- :ddrive
- if not exist d:\nul goto dend
- if exist d:\rodge\nul goto end1
- md d:\rodge
- copy *.* d:\rodge
- d:
- cd \rodge
- goto ennd
-
- :edrive
- if not exist e:\nul goto eend
- if exist e:\rodge\nul goto end1
- md e:\rodge
- copy *.* e:\rodge
- e:
- cd \rodge
- goto ennd
-
-
- :cend
- echo Can't find drive c: . Rodge Rock in Retro Active not installed.
- goto end
- :dend
- echo Can't find drive d: . Rodge Rock in Retro Active not installed.
- goto end
- :eend
- echo Can't find drive e: . Rodge Rock in Retro Active not installed.
- goto end
-
- :end1
- echo The directory \RODGE already exists on your hard disk.
- echo To install Retro Active create a new directory on your hard disk and copy
- echo all the files on the floppy to this directory. To play type Rodge.
- goto end
-
- :end2
- echo Unable to copy files onto your hard disk.
- goto end
-
-
- :endbad
- echo Rodge Rock in Retro Active has not been installed.
- goto end
-
- :ennd
- echo Rodge Rock in Retro Active is now installed on your hard disk.
- echo To play type RODGE .
- goto end
-
-
-
- :end
- echo on
-
-
-