home *** CD-ROM | disk | FTP | other *** search
- @echo off
- if %1.==. goto NOPARMS
- cls
- echo Installation of FaceLift in a Windows-3.0-Network-Version :
- echo -----------------------------------------------------------
- echo.
- echo This Program is for Administrators of Networks only. If you have no
- echo Network or if you aren't an Administrator, terminate this program now
- echo by pressing Ctrl+Break.
- echo.
- echo If you are the Administrator of your Network, you should have read
- echo "Installing FaceLift for a Windows 3.0 Network" from the Bitstream
- echo FaceLift documentation before executing this program, NETWORK.BAT.
- echo.
- echo If you have not read these directions, press Ctrl+Break and read
- echo the network installation directions.
- echo.
- pause
- cls
- echo Installation of FaceLift in a Windows-3.0-Network-Version :
- echo -----------------------------------------------------------
- echo.
- echo The Facelift-Files for Windows 3.0 Network Version will be
- echo installed into the current Directory, which is
- echo.
- cd
- echo.
- echo The disk drive/directory being used as the source of the
- echo FaceLift files is: %1
- echo.
- echo.
- echo If this is not exactly what you want to do, press Ctrl+Break.
- echo.
- pause
- echo.
- echo Please wait...
- echo.
-
- if not exist %1\install.exe goto ERROR
- if not exist %1\network.inf goto ERROR
- if not exist %1\FLI.PCK goto ERROR
- if not exist %1\FLX.PCK goto ERROR
- if not exist %1\FLH3.PCK goto ERROR
- if not exist %1\FLWIN30.PCK goto ERROR
- if not exist %1\SHELLPRT.PCK goto ERROR
- if not exist %1\SHELLSCR.PCK goto ERROR
- if not exist %1\FLSYS30.PCK goto ERROR
- if not exist %1\MAKESOFT.PCK goto ERROR
- if not exist %1\SFINSTAL.PCK goto ERROR
-
- copy %1\install.exe .
- if not exist install.exe goto ERROR1
- install %1\FLX.PCK
- if not exist FACELIFT.EXE goto ERROR1
- install %1\FLH3.PCK
- if not exist FACELIFT.HLP goto ERROR1
- install %1\FLWIN30.PCK
- if not exist FLUSRW3.DLL goto ERROR1
- install %1\SHELLPRT.PCK
- if not exist SHELLPRT.DRV goto ERROR1
- install %1\SHELLSCR.PCK
- if not exist SHELLSCR.DRV goto ERROR1
- install %1\FLSYS30.PCK
- if not exist FLSYS30.DLL goto ERROR1
- install %1\MAKESOFT.PCK
- if not exist MAKESOFT.EXE goto ERROR1
- install %1\SFINSTAL.PCK
- if not exist SFINSTAL.EXE goto ERROR1
- copy %1\FLI.PCK .
- if not exist FLI.PCK goto ERROR1
- copy %1\network.inf install.inf
- if not exist install.inf goto ERROR1
-
- echo.
- echo All FaceLift files are installed.
- echo If you haven't done so already, read the network installation
- echo instructions in the Bitstream FaceLift documentation.
- echo.
- echo Now you can start the installation for first user.
- echo When asked to install typefaces for the first user,
- echo put the typefaces into a shareable network directory.
- echo.
- goto END
-
- :ERROR
- echo The files are not found in %1 !
- echo.
- echo Check the disks and start this program again.
- echo.
- goto END
-
- :ERROR1
- echo Problems have occurred during installation.
- echo All files have not been installed.
- echo.
- echo Please solve the problems and start this program again.
- echo.
- goto END
-
- :NOPARMS
- rem No Parameter specified, use Drive A:.
- %0 A:
-
- :END
- echo.