home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
- if not exist cmfiler.com goto WrongDir
- if exist cmfiler.ovy goto RightDir
-
- :WrongDir
- echo INSTALL.BAT is unable to find CMFiler program files
- echo.
- echo Make sure that all the files from the original CF554.ZIP, CF554.EXE
- echo or CMFILE.ZIP compression are in the same directory, and that that
- echo directory is selected as the DOS current directory before running
- echo INSTALL.BAT.
- echo.
- pause
- goto TheEnd
-
- :RightDir
- echo ***** CMFiler Ver 5.54 Installation *****
- echo.
- if not exist C:\DOS\CHOICE.COM then goto InstallNow
- echo This batch file creates the directory C:\CF554 and copies to it
- echo the files in the CMFiler Ver 5.54 fileset.
- echo.
- C:\DOS\CHOICE.COM Proceed with installation
- if errorlevel 2 goto TheEnd
-
- :InstallNow
- cls
- echo Installing CMFiler Ver 5.54 to C:\CF554
- echo.
- echo Creating C:\CF554
- echo.
- md c:\cf554
- echo Copying files. . .
- echo.
- copy *.* c:\cf554
- echo Copying CF.BAT to C:\DOS
- copy cf.bat c:\dos
- echo.
- echo To run CMFiler at the DOS prompt, you may:
- echo.
- echo (1) type:
- echo c:\cf554\cmfiler
- echo.
- echo or;
- echo.
- echo (2) just type:
- echo cf
- echo.
- pause
-
- cls
- echo The files in the directory CF554 include CMFILER.PIF and CMFILER.ICO
- echo files for running CMFiler under Windows 3.1.
- echo.
- echo To add CMFiler to a program group, go to the Windows Program Manager, and
- echo double click on the desired group. Then, in the Program Manager menu bar,
- echo click on File, and New... Then click the Program Item bullet, if
- echo necessary, and OK.
- echo.
- echo Fill in the data in the next menu as follows, moving the cursor from
- echo each line to the next using your mouse and clicking:
- echo.
- echo Description: CMFiler
- echo Command Line: C:\CF554\CMFILER.PIF
- echo Working Directory: C:\ [or whatever you would like CMFiler to start in]
- echo Shortcut Key: [Optional. I use Ctrl+Alt+C]
- echo Also decide if you want CMFiler to start minimized. I leave this off.
- echo.
- echo Then click on the Change Icon... button. Windows will tell you there are
- echo no available icons for this file. Click OK, then, on the File Name line
- echo in the next menu, type C:\CF554\CMFILER.ICO and click on OK twice.
- echo The CMFiler icon should appear in the CMFiler Properties box.
- echo Click OK on the Program Item Properties menu, and the CMFiler icon should
- echo appear in the program group. Just double click on it to run.
- echo.
- pause
-
- :TheEnd
- echo on
-