home *** CD-ROM | disk | FTP | other *** search
- @echo off
- if %1x==x goto default
- if %2x==x goto default
- echo Installing GO to %2 from %1.
- echo I will create a directory called IGO on %2 and copy all files
- echo there (about 500 Kbytes).
- echo Press any key to continue or control-C to cancel.
- pause
- echo Creating IGO directory on %2 drive.
- mkdir %2\IGO
- copy %1install2.bat %2\IGO
- %2\IGO\install2 %1 %2
- goto done
- :default
- echo Installing GO to your hard disk ( C: ) from your floppy ( A: ).
- echo I will create a directory called IGO on C: and copy all files
- echo there (about 500 Kbytes). You can specify the disks to install
- echo from and to on the install command line. For example:
- echo "install B: D:" will install from B: to D:.
- echo Press any key to continue or control-C to cancel.
- pause
- echo Creating IGO directory on C: drive.
- mkdir C:\IGO
- copy a:install2.bat c:\IGO
- c:\IGO\install2 A: C:
- :done
-
-