home *** CD-ROM | disk | FTP | other *** search
- @Echo off
- cls
- Echo.
- Echo Bleifuss 2 Patch Installation (v1.11)
- Echo.
-
- rem -------- Check parameters ---------
- if "%1" == "" goto error1
- if "%2" == "" goto error1
- rem -----------------------------------
-
- rem --- Check if directory exists -----
- if not exist %1:\%2\screamer.cfg goto error2
- rem -----------------------------------
-
-
- rem -- Normal or Network install ? ----
- Echo Es wird installiert:
- Echo.
- Echo Update für die Netzwerk Installation von Bleifuss 2
- Echo.
- Echo.
- Echo.
- goto network
- rem -----------------------------------
-
-
- rem -----------------------------------
-
- :network
- rem --- Network procedure -------------
- Echo.
- Echo.
- Echo.
- Echo Bitte warten........
- copy s2_*.exe %1:\%2 > nul
- copy setupn.exe %1:\%2 > nul
- %1:
- cd \%2
- attrib start*.exe -r > nul
- if not exist starth.exe goto njump3
- del starth.exe
- s2_256hn.exe > nul
- :njump3
- if not exist start65h.exe goto njump4
- del start65h.exe
- s2_65khn.exe > nul
- :njump4
- del s2_*.exe
- del setup.exe
- setupn.exe > nul
- del setupn.exe > nul
- cls
- rem -----------------------------------
-
- :installed
- Echo.
- Echo Patch installiert
- Echo.
- Echo Sollten Sie Bleifuss 2 neu installieren, muss auch dieses Update
- Echo neu installiert werden.
- Echo.
- goto end
-
- :error1
- cls
- echo Benutzung: UPDATE LAUFWERK BLEIFUSS2-VERZEICHNIS
- echo.
- echo Wobei LAUFWERK Ihre Festplatte ist, und das VERZEICHNIS angibt,
- echo wo Bleifuss 2 installiert wurde.
- echo.
- echo Beispiel: UPDATE C B2
- goto end
-
- :error2
- cls
- echo Das Bleifuss 2 Verzeichnis (%1:\%2) gibt es nicht,
- echo oder die Installation ist nicht komplett.
- echo Bitte prüfen Sie den angegebenen Pfad. Sollte dieser stimmen,
- echo installieren Sie Bleifuss 2 erneut.
- goto end
-
- :end
-