home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ftp.wwiv.com
/
ftp.wwiv.com.zip
/
ftp.wwiv.com
/
pub
/
DOOR
/
EVENLORD.ZIP
/
INSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1995-08-16
|
2KB
|
85 lines
@echo off
cls
if exist %1\lord.exe goto begin
if not exist %1\lord.exe goto nodir
:nodir
echo.
echo -=-=-=-=-=-=-=-=-=-=-
echo Lord here comes the night
echo -=-=-=-=-=-=-=-=-=-=-
echo By: Jonathan R. Holman
echo. The War Room BBS
echo. (702)-658-9938
echo.
echo.
echo *Usage*
echo install -=directory where your LORD files are=-
echo.
echo *Example*
echo install c:\lord
echo.
echo.
goto finish3
:begin
echo.
echo -=-=-=-=-=-=-=-=-=-=-
echo Lord of the Evening
echo -=-=-=-=-=-=-=-=-=-=-
echo By: Jonathan R. Holman
echo.
echo.
echo.
echo.
echo Now backing up files...
if not exist %1\lordtxt.old goto cc
del %1\lordtxt.old
:cc
ren %1\lordtxt.dat lordtxt.old
echo Files have been backed up...
echo.
echo.
echo.
echo Installing new files...
copy lordtxt.evn %1\lordtxt.dat
copy uninstal.bat %1\uninstal.bat
echo.
echo Files installed...
echo.
pause
cls
echo
echo
echo Installation complete!
echo To uninstall Evening of the Lord, simply run uninstal.bat from your
echo Lord directory. Enjoy this add on, and ask for MORE!
echo Send any comments, bugs, or suggestions to Blackfist1@AOL.Com
echo Please view the EvenLord.txt file for more info on this program.
echo.
echo.
echo.
choice /c:yn Would you like to view the readme file now?
if errorlevel 2 goto finish2
if errorlevel 1 goto yes
:yes
cls
type EvenLord.doc | more
goto finish2
:finish2
cls
echo.
echo -=-=-=-=-=-=-=-=-=-
echo Lord here comes the night
echo -=-=-=-=-=-=-=-=-=-
echo By: Jonathan R. Holman
echo.
echo.
echo.
echo.
:finish3
echo.