home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 18 / 18.iso / w / w364 / 6.img / NETWORK.BAT < prev    next >
Encoding:
DOS Batch File  |  1991-09-10  |  3.1 KB  |  106 lines

  1. @echo off
  2. if %1.==. goto NOPARMS
  3. cls
  4. echo Installation of FaceLift in a Windows-3.0-Network-Version :
  5. echo -----------------------------------------------------------
  6. echo.
  7. echo This Program is for Administrators of Networks only. If you have no 
  8. echo Network or if you aren't an Administrator, terminate this program now
  9. echo by pressing Ctrl+Break.
  10. echo.
  11. echo If you are the Administrator of your Network, you should have read 
  12. echo "Installing FaceLift for a Windows 3.0 Network" from the Bitstream 
  13. echo FaceLift documentation before executing this program, NETWORK.BAT.
  14. echo.
  15. echo If you have not read these directions, press Ctrl+Break and read
  16. echo the network installation directions.
  17. echo.
  18. pause
  19. cls
  20. echo Installation of FaceLift in a Windows-3.0-Network-Version :
  21. echo -----------------------------------------------------------
  22. echo.
  23. echo The Facelift-Files for Windows 3.0 Network Version will be 
  24. echo installed into the current Directory, which is
  25. echo.
  26. cd
  27. echo.
  28. echo The disk drive/directory being used as the source of the 
  29. echo FaceLift files is:    %1
  30. echo.
  31. echo.
  32. echo If this is not exactly what you want to do, press Ctrl+Break.
  33. echo.
  34. pause
  35. echo.
  36. echo Please wait...
  37. echo.
  38.  
  39. if not exist %1\install.exe  goto ERROR
  40. if not exist %1\network.inf  goto ERROR
  41. if not exist %1\FLI.PCK      goto ERROR
  42. if not exist %1\FLX.PCK      goto ERROR
  43. if not exist %1\FLH3.PCK     goto ERROR
  44. if not exist %1\FLWIN30.PCK  goto ERROR
  45. if not exist %1\SHELLPRT.PCK goto ERROR
  46. if not exist %1\SHELLSCR.PCK goto ERROR
  47. if not exist %1\FLSYS30.PCK  goto ERROR
  48. if not exist %1\MAKESOFT.PCK goto ERROR
  49. if not exist %1\SFINSTAL.PCK goto ERROR
  50.  
  51. copy %1\install.exe .
  52. if not exist install.exe  goto ERROR1
  53. install %1\FLX.PCK     
  54. if not exist FACELIFT.EXE goto ERROR1
  55. install %1\FLH3.PCK    
  56. if not exist FACELIFT.HLP goto ERROR1
  57. install %1\FLWIN30.PCK 
  58. if not exist FLUSRW3.DLL  goto ERROR1
  59. install %1\SHELLPRT.PCK
  60. if not exist SHELLPRT.DRV goto ERROR1
  61. install %1\SHELLSCR.PCK
  62. if not exist SHELLSCR.DRV goto ERROR1
  63. install %1\FLSYS30.PCK 
  64. if not exist FLSYS30.DLL  goto ERROR1
  65. install %1\MAKESOFT.PCK
  66. if not exist MAKESOFT.EXE goto ERROR1
  67. install %1\SFINSTAL.PCK
  68. if not exist SFINSTAL.EXE goto ERROR1
  69. copy %1\FLI.PCK .
  70. if not exist FLI.PCK      goto ERROR1
  71. copy %1\network.inf install.inf
  72. if not exist install.inf  goto ERROR1
  73.  
  74. echo.
  75. echo All FaceLift files are installed. 
  76. echo If you haven't done so already, read the network installation
  77. echo instructions in the Bitstream FaceLift documentation.
  78. echo.
  79. echo Now you can start the installation for first user.
  80. echo When asked to install typefaces for the first user, 
  81. echo put the typefaces into a shareable network directory. 
  82. echo.
  83. goto END
  84.  
  85. :ERROR
  86. echo The files are not found in %1 !
  87. echo.
  88. echo Check the disks and start this program again.
  89. echo.
  90. goto END
  91.  
  92. :ERROR1
  93. echo Problems have occurred during installation.
  94. echo All files have not been installed.
  95. echo.
  96. echo Please solve the problems and start this program again.
  97. echo.
  98. goto END
  99.  
  100. :NOPARMS
  101. rem No Parameter specified, use Drive A:.
  102. %0 A:
  103.  
  104. :END
  105. echo.
  106.