home *** CD-ROM | disk | FTP | other *** search
- echo off
- echo *
- echo ** Copies GL Version 1.15 files from Drive A to Drive C
- echo ***
- echo *** Creates a subdirectory on Drive C called \GL
- echo **** Starts GL and creates the user file MYGL.INF
- echo *** When GL begins, enter a password or just hit Enter
- echo ***
- echo ** PRESS CONTROL-C or BREAK if you wish to QUIT right now!
- echo *
- pause
- echo Working...
- a:
- cd \
- if exist gl.exe goto :a
- goto :funny
- :a
- if exist userinfo.doc goto :b
- goto :funny
- :b
- c:
- cd \
- md \gl
- cd \gl
- copy a:*.* /v
- gl mygl.inf
- goto :end
- :funny
- echo That's funny, the disk in Drive A is not GL's!
- :end
-
-