home *** CD-ROM | disk | FTP | other *** search
- @echo off
- echo ┌────────────────────────────────────────────────────────────────────────┐
- echo │ 'The Glide' │
- echo │ │
- echo │ Generic Language - Integrated Developement Environment │
- echo │ Version # 1.00.02 │
- echo │ │
- echo │ (c) Copyright 1993, Russell A. Powell │
- echo │ All Rights Reserved. │
- echo └────────────────────────────────────────────────────────────────────────┘
- echo 'The Glide' Version 1.00.02 installation routine
- echo.
- if exist disk1.exe goto :start
- goto :wait1
- :start
- echo ┌─────────────────────────────┐
- echo │Installing 'The Glide' . . . │
- echo │ │
- echo │Please wait . . . │
- echo └─────────────────────────────┘
- disk1.exe %1
- :Disk2
- if not exist disk2.exe goto :wait2
- disk2.exe %1
- goto :end
- :wait2
- echo ┌───────────────────────────────────────┐
- echo │Insert 'The Glide' Installation Disk #2│
- echo └───────────────────────────────────────┘
- pause
- goto :Disk2
- goto end
- :wait1
- echo ┌───────────────────────────────────────┐
- echo │Insert 'The Glide' Installation Disk #1│
- echo └───────────────────────────────────────┘
- pause
- goto start
- :end
- Echo ┌────────────────────────────────────────────┐
- echo │I'm Ready to start 'The Glide'. Are you ? │
- echo └────────────────────────────────────────────┘
- pause
- if not "%1" == "" cd %1
- glide
-