home *** CD-ROM | disk | FTP | other *** search
- @ECHO OFF
-
- IF NOT .%1 == . goto INSTALL
- @echo ****************************************************************
- @echo ** **
- @echo ** You must supply a path where you have Windows installed **
- @echo ** for example: INSTALL C:\WINDOWS **
- @echo ** would cause INSTALL.BAT to install K-Free in the **
- @echo ** \WINDOWS directory on drive C: **
- @echo ** **
- @echo ****************************************************************
- goto EXIT
-
-
- :INSTALL
- @echo ** Copying KFREE.EXE to %1
- copy kfree.exe %1
- @echo ** Copying KFREE.INI to %1
- copy kfree.ini %1
- @echo ** Copying DELIB.DLL to %1
- copy delib.dll %1
-
- @echo ****************************************************************
- @echo ** **
- @echo ** Please read the documentation contained in the file: **
- @echo ** KFREE.WRI for information on the features of K-Free **
- @echo ** **
- @echo ** ORDER.WRI and LICENSE.WRI contain important information **
- @echo ** on registration and site licenses for K-Free and other **
- @echo ** products from Dragons Eye Software **
- @echo ** **
- @echo ****************************************************************
-
- :EXIT
-
-