home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The SelectWare System Volume 2 #3
/
The_SelectWare_System_Series_1_Volume_2_Number_3_Selectware.iso
/
lot10020
/
install.bat
< prev
next >
Wrap
DOS Batch File
|
1989-07-14
|
2KB
|
75 lines
echo off
rem
rem
rem Batch file to install MSDEMO
rem
rem
if he%1lp==help goto help
mkdir %1\ldc3
cls
echo Please wait for files to be copied. . .
cd \ldc3
copy *.* %1\ldc3
cd \
if errorlevel 1 goto error
cls
echo Installation complete.
echo Type MSDEMO to view the demonstration.
%1
cd %1\ldc3
goto done
:error
echo ERROR: Not all of the files were successfully copied.
echo Please note that you need approximatey 1.0 MB free to install the
echo demo. Be sure to include a colon after the specified drive.
goto done
:help
echo ╔════════════════════════════════════════════════════════════════════╗
echo ║ ║
echo ║ Hard Disk Installation Program ║
echo ║ ║
echo ╟────────────────────────────────────────────────────────────────────╢
echo ║ ║
echo ║ To run the Manuscript autodemo from your hard disk, ║
echo ║ ║
echo ║ At the DOS prompt, type: ║
echo ║ ║
echo ║ install [drive:] ║
echo ║ ║
echo ║ For example, ║
echo ║ ║
echo ║ install c: ║
echo ║ ║
echo ║ will install the autodemo on drive c: ║
echo ║ ║
echo ║ Please note you need about 1.0 MB of free disk space. ║
echo ║ ║
echo ╚════════════════════════════════════════════════════════════════════╝
:done