home *** CD-ROM | disk | FTP | other *** search
- @echo off
- :
- : FILE: MANSETUP.BAT
- : DATE: 01-28-1994
- : Copyright (C) 1994 by M.P.W.LASEC Software GmbH
- :
- : Diese Kommandodatei ist für den Fall vorgesehen, daß die automatische
- : Installation durch SETUP/A scheitert.
- :
- : Die folgenden SET-Befehle müssen an die Installationsumgebung angepaßt
- : werden.
- : Das Verzeichnis, in dem die Applikationsbestandteile landen sollen:
- SET NETAPP=X:\TELE
- : Der Goto-Befehl muß entfernt werden
- GOTO USAGE
- :
- : Ab hier sollte nichts mehr modifiziert werden
- :
- : ****************************************************************************
- SET APP=TELE
- mkdir %NETAPP%
- copy appli.in_ %NETAPP%
- expand hook.dl_ %NETAPP%\hook.dll
- expand meter.dl_ %NETAPP%\meter.dll
- copy mscomstf.dl_ %NETAPP%
- copy msdetect.in_ %NETAPP%
- copy msdetstf.dl_ %NETAPP%
- copy msinsstf.dl_ %NETAPP%
- copy msshared.in_ %NETAPP%
- copy msshlstf.dl_ %NETAPP%
- copy msuilstf.dl_ %NETAPP%
- expand oscontro.dl_ %NETAPP%\oscontro.dll
- expand ospr.dl_ %NETAPP%\ospr.dll
- copy ossetup.dl_ %NETAPP%
- copy ossetup.inf %NETAPP%
- copy ossetup.in_ %NETAPP%
- copy ossetup.ms_ %NETAPP%
- expand relnotes.wr_ %NETAPP%\relnotes.wri
- expand %APP%.an_ %NETAPP%\%APP%.and
- expand %APP%.bm_ %NETAPP%\%APP%.bmp
- expand %APP%.ex_ %NETAPP%\%APP%.exe
- expand %APP%.fo_ %NETAPP%\%APP%.fon
- expand %APP%.hl_ %NETAPP%\%APP%.hlp
- expand %APP%.ic_ %NETAPP%\%APP%.ico
- expand %APP%.in_ %NETAPP%\%APP%.ini
- expand %APP%.pr_ %NETAPP%\%APP%.prs
- copy setup.exe %NETAPP%
- copy setup.lst %NETAPP%
- copy setupapi.in_ %NETAPP%
- copy _mssetup.ex_ %NETAPP%
- copy _mstest.ex_ %NETAPP%
- :
- : Jetzt die gemeinsam benutzten DLLs kopieren
- :
- expand bc30rtl.dl_ %NETAPP%\bc30rtl.dll
- expand bwcc.dl_ %NETAPP%\bwcc.dll
- expand owl31.dl_ %NETAPP%\owl31.dll
- expand tclass31.dl_ %NETAPP%\tclass31.dll
- GOTO LEAVE
- :USAGE
- echo Sie müssen diese Kommandodatei zunächst an die Installationsumgebung anpassen!
- echo Bitte lesen Sie dazu die Datei README im Installationsverzeichnis.
- :LEAVE