home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Hacker Chronicles 2
/
HACKER2.BIN
/
257.INSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1987-09-28
|
3KB
|
60 lines
echo off
cls
echo *********************************************************************
echo * *
echo * DISCatalog Installation *
echo *********************************************************************
echo * *
echo * *
if not "%1" == "" goto cont1
:definst
echo * The DISCatalog files will be installed in *
echo * directory C:\DISC on your hard disk. *
echo * *
echo * If you want to install DISCatalog in another directory, or on *
echo * another hard disk (e.g. on drive D:), exit from this installation*
echo * and see section 7.3 of the DISCatalog User's Manual. *
echo * *
echo * *
echo * *
echo * To exit from this installation, press the ctrl (CONTROL) key *
echo * and the C key simultaneously (then press Y to exit). *
echo * *
echo * *
echo * To continue with the installation : *
pause
md c:\disc > nul:
cd c:\disc > nul:
copy install2.bat c: /v
c:install2
:cont1
echo * The DISCatalog files will be installed on %1:%2
echo * *
echo * To exit from this installation, press the ctrl (CONTROL) key *
echo * and the C key simultaneously (then press Y to exit). *
echo * *
echo * *
echo * *
echo * *
echo * *
echo * *
echo * *
echo * *
echo * *
echo *********************************************************************
pause
if "%2" == "" goto dun
md %1:%2 > nul:
cd %1:%2 > nul:
goto dun
:dun
copy install2.bat %1: /v
%1:install2 %1 %2