home *** CD-ROM | disk | FTP | other *** search
- @echo off
- if "%1"=="" goto error
- if "%2"=="" goto error
-
- cls
- echo.
- echo.
- echo.
- echo *******************************************************************
- echo ** **
- echo ** ObjectEase 3.0 Installation Utility **
- echo ** **
- echo ** (c) Copyright 1994 - David S. Reinhart **
- echo ** **
- echo *******************************************************************
- echo.
- echo.
- echo This installation utility will create a directory on your hard
- echo drive called OBJEAS30 along with the necessary sub-directories.
- echo The enclosed archive will then be unpacked into this new directory
- echo tree. Installation requires 2.5 MB of free disk space on the
- echo destination drive.
- echo.
- echo Press CTRL-C to abort installation or
- echo.
- pause
-
- :work
- %2
- cd\
- md OBJEAS30
- cd OBJEAS30
- echo.
- echo Unpacking files...
- %1\objeas30.exe %2 -d > NUL
- goto success
-
- :error
- echo.
- echo Syntax: INSTALL A: C: where A: is the appropriate source drive
- echo and C: is the desired destination drive.
- echo.
- goto end
-
- :success
- echo.
- echo ObjectEase 3.0 has been successfully installed!
- echo.
- echo Be sure to check out the demos in the OBJEAS30\DEMOS directory.
- echo The executable demo files are TUIDEMO.EXE, GUIDEMO.EXE, and VIDDEMO.EXE.
- echo.
- echo Happy coding!
- echo.
- echo.
-
- :end
-
-
-