home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C!T ROM 5
/
ctrom5b.zip
/
ctrom5b
/
CT
/
CT9410
/
FEDIT
/
INSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1993-10-18
|
1KB
|
43 lines
@echo off
if not "%1"=="" goto Install0
cls
echo Merlin's Deluxe Font Editor
echo Installation procedure
echo.
echo Option to install FEDIT to:
echo A A: (distribution disk, 300k free needed)
echo B B: (distribution disk, 300k free needed)
echo C C:\FEDIT
echo D D:\FEDIT
echo E E:\FEDIT
echo Q Quit installation procedure
echo.
ask "Please enter the letter of your choice: ", abcdeq
if errorlevel 6 goto end
if errorlevel 5 Install e:
if errorlevel 4 Install d:
if errorlevel 3 Install c:
if errorlevel 2 Install b:
if errorlevel 1 Install a:
goto end
:Install0
if "%1"=="a:" goto Install1
if "%1"=="b:" goto Install1
echo Creating directory ...
md %1\fedit >nul
echo Copying files for you ...
xcopy *.* %1\fedit
%1
cd \fedit
:Install1
echo Unpacking files for you ...
pkunzip *.zip
del *.zip
echo Installation is complete.
echo Starting FEDIT for you ...
FEDIT
:end