home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Overload
/
ShartewareOverload.cdr
/
database
/
ks21_3.zip
/
KSLOAD.BAT
< prev
next >
Wrap
DOS Batch File
|
1990-10-15
|
2KB
|
42 lines
ECHO OFF
VERIFY ON
if %1x==x goto explain
if not exist %1ksmenu.ini goto explain
CLS
echo ────────────────────────────────────────────────────────────────────
echo This procedure will copy the Kwikstat Simulations module to
echo the directory %1. If this is not correct, press CTRL-BREAK.
echo ────────────────────────────────────────────────────────────────────
pause
echo Copying program to %1 . . .
copy kssimu.exe %1*.exe
cls
echo ────────────────────────────────────────────────────────────────────
type %1ksmenu.ini
echo ────────────────────────────────────────────────────────────────────
echo If one of the displayed menu items is KSSIMU then press
echo CTRL-BREAK to cancel this procedure, else
echo ────────────────────────────────────────────────────────────────────
pause
COPY %1KSMENU.INI+KSSMEN %1KSMENU.INI
echo Installation of Kwikstat Simulations module complete.
goto end
:explain
echo ┌────────────────────────────────────────────────────────────────────┐
echo │ The format of this command is: │
echo │ │
echo │ KSLOAD d:\directory\ │
echo │ Where d: is the drive name and \directory\ is the directory name │
echo │ where the current version of Kwikstat version 2.10 resides. │
echo │ │
echo │ For example: │
echo │ KSLOAD C:\KWIKSTAT\ │
echo │ would be the most probable use of the command on hard disk. │
echo │ │
echo │ For floppy, with the new disk in A: and the current Kwikstat disk │
echo │ in drive B:, the command would be: │
echo │ KSLOAD B:\ │
echo └────────────────────────────────────────────────────────────────────┘
:END