home *** CD-ROM | disk | FTP | other *** search
/ Chip 1994 March / CHIP0394.BIN / info / softserv / teleinfo / mansetup.ba_ / mansetup.ba
Encoding:
Text File  |  1994-02-23  |  2.0 KB  |  63 lines

  1. @echo off
  2. :
  3. : FILE: MANSETUP.BAT
  4. : DATE: 01-28-1994
  5. : Copyright (C) 1994 by M.P.W.LASEC Software GmbH
  6. :
  7. : Diese Kommandodatei ist für den Fall vorgesehen, daß die automatische 
  8. : Installation durch SETUP/A scheitert.
  9. :
  10. : Die folgenden SET-Befehle müssen an die Installationsumgebung angepaßt
  11. : werden.
  12. : Das Verzeichnis, in dem die Applikationsbestandteile landen sollen:
  13. SET NETAPP=X:\TELE
  14. : Der Goto-Befehl muß entfernt werden
  15. GOTO USAGE
  16. :
  17. : Ab hier sollte nichts mehr modifiziert werden
  18. :
  19. : ****************************************************************************
  20. SET APP=TELE
  21. mkdir %NETAPP%
  22. copy appli.in_    %NETAPP%
  23. expand hook.dl_   %NETAPP%\hook.dll
  24. expand meter.dl_  %NETAPP%\meter.dll
  25. copy mscomstf.dl_ %NETAPP%
  26. copy msdetect.in_ %NETAPP%
  27. copy msdetstf.dl_ %NETAPP%
  28. copy msinsstf.dl_ %NETAPP%
  29. copy msshared.in_ %NETAPP%
  30. copy msshlstf.dl_ %NETAPP%
  31. copy msuilstf.dl_ %NETAPP%
  32. expand oscontro.dl_ %NETAPP%\oscontro.dll
  33. expand ospr.dl_   %NETAPP%\ospr.dll
  34. copy ossetup.dl_  %NETAPP%
  35. copy ossetup.inf  %NETAPP%
  36. copy ossetup.in_  %NETAPP%
  37. copy ossetup.ms_  %NETAPP%
  38. expand relnotes.wr_ %NETAPP%\relnotes.wri
  39. expand %APP%.an_  %NETAPP%\%APP%.and
  40. expand %APP%.bm_  %NETAPP%\%APP%.bmp
  41. expand %APP%.ex_  %NETAPP%\%APP%.exe
  42. expand %APP%.fo_  %NETAPP%\%APP%.fon
  43. expand %APP%.hl_  %NETAPP%\%APP%.hlp
  44. expand %APP%.ic_  %NETAPP%\%APP%.ico
  45. expand %APP%.in_  %NETAPP%\%APP%.ini
  46. expand %APP%.pr_  %NETAPP%\%APP%.prs
  47. copy setup.exe    %NETAPP%
  48. copy setup.lst    %NETAPP%
  49. copy setupapi.in_ %NETAPP%
  50. copy _mssetup.ex_ %NETAPP%
  51. copy _mstest.ex_  %NETAPP%
  52. :
  53. : Jetzt die gemeinsam benutzten DLLs kopieren
  54. :
  55. expand bc30rtl.dl_  %NETAPP%\bc30rtl.dll
  56. expand bwcc.dl_     %NETAPP%\bwcc.dll
  57. expand owl31.dl_    %NETAPP%\owl31.dll
  58. expand tclass31.dl_ %NETAPP%\tclass31.dll
  59. GOTO LEAVE
  60. :USAGE
  61. echo Sie müssen diese Kommandodatei zunächst an die Installationsumgebung anpassen!
  62. echo Bitte lesen Sie dazu die Datei README im Installationsverzeichnis.
  63. :LEAVE