home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Mother of All Windows Books
/
CD-MOM.iso
/
cd_mom
/
workmodl
/
drafix
/
install.bat
< prev
next >
Wrap
DOS Batch File
|
1991-12-11
|
2KB
|
57 lines
@echo off
cls
if not exist winstall.inf goto missing_files
if not exist winstall.exe goto missing_files
echo
echo
echo
echo
echo ╔════════════════════════════════════════════════════════════╗
echo ║ ║
echo ║ The Drafix Windows CAD Installation ║
echo ║ will load windows and execute the install ║
echo ║ ║
echo ║ Remember to leave floppy in until you Exit Windows! ║
echo ║ ║
echo ╚════════════════════════════════════════════════════════════╝
echo
echo
echo Loading windows...
rem -- Check that all required files exist (we assume that
rem -- if all files exist then we are running from the correct
rem -- INSTALL will execute
win winstall.exe
goto finished
rem -- We are missing files - assume not running from the CD-ROM
:missing_files
echo
echo
echo
echo
echo ╔═══════════════════════════════════════════════════════════════╗
echo ║ ║
echo ║ You are not running from the Windows CAD Floppy drive ║
echo ║ ║
echo ║ Set your default drive to the Installation floppy ║
echo ║ and type INSTALL. For example, if A is your floppy ║
echo ║ drive letter you would type the following: ║
echo ║ ║
echo ║ ║
echo ║ A: [Enter] ║
echo ║ ║
echo ║ INSTALL [Enter] ║
echo ║ ║
echo ║ ║
echo ╚═══════════════════════════════════════════════════════════════╝
goto finished
:finished
echo on