home *** CD-ROM | disk | FTP | other *** search
- echo off
- rem ... This is the batch file KWCOPY.BAT
- verify on
- if %1x==x goto explain
- cls
- echo ┌───────────────────────────────────────────────────────────┐
- echo │ Installation of KWIKWRITE Version 4.00 │
- echo │ on HARD DISK %1 │
- echo │ │
- echo │ Please follow the instructions on the screen. │
- echo └───────────────────────────────────────────────────────────┘
- echo ┌───────────────────────────────────────────────────────────┐
- echo │ This routine copies KWIKWRITE onto a hard disk │
- echo │ subdirectory named %1\KW. If this directory already │
- echo │ exists, the old version is replaced with the new. │
- echo └───────────────────────────────────────────────────────────┘
- md %1\KW
- echo ┌───────────────────────────────────────────────────────────┐
- echo │ NOTE:If you get the message "unable to create directory" │
- echo │ during installation, it just means the KW directory is │
- echo │ already created. The copying process will still be normal.│
- echo └───────────────────────────────────────────────────────────┘
- echo ┌───────────────────────────────────────────────────────────┐
- echo │ If you are not certain you wish to continue, press │
- echo │ CTRL-BREAK. If you are certain you wish to continue, then │
- echo └───────────────────────────────────────────────────────────┘
- pause
- copy *.exe %1\KW
- copy *.hlp %1\KW
- copy kwprint.dat %1\KW
- copy KWTYPE %1\KW
- COpy kwtest %1\KW
- copy kw-short.doc %1\KW
- copy kworder %1\KW
- copy kw*.txt %1\KW
- copy *.bat %1\KW
- cls
- echo ┌───────────────────────────────────────────────────────┐
- echo │ COPY OF THE KWIKWRITE IS COMPLETE! │
- echo │ │
- echo │ Read the file LATENEWS.DOC for latest news and info. │
- echo │ │
- echo │ Begin the KWIKWRITE tutorial from the %1\KW directory │
- echo │ with the command KWTUTOR │
- echo └───────────────────────────────────────────────────────┘
- %1
- cd\kw
- goto End
- :Explain
- echo ┌───────────────────────────────────────────────────────┐
- echo │ The format of this command is: │
- echo │ │
- echo │ KWHARD d: │
- echo │ │
- echo │ where d: is the name of the disk drive on which you │
- echo │ want the program installed. For example, if you │
- echo │ have the KWIKWRITE disk in the A: drive and want │
- echo │ to install the program on the C: drive, the command │
- echo │ would look something like this . . . │
- echo │ │
- echo │ "A>KWHARD C:" │
- echo └───────────────────────────────────────────────────────┘
- :End
-