home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Best of German Only 1
/
romside_best_of_german_only_1.iso
/
anwender
/
svfax
/
entpack.exe
/
INSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1993-03-30
|
2KB
|
66 lines
@echo off
cls
echo ┌─────────────────────────────────────────────────────┐
echo │ SV-SERIE - Festplatten-Installation │
echo │ SV-Foto / SV-Fax │
echo │ Copyright (c) 1993 by SOFTventures Software │
echo └─────────────────────────────────────────────────────┘
echo:
echo:
IF %1a == a goto Error
IF %1 == c: goto weiter
IF %1 == C: goto weiter
IF %1 == d: goto weiter
IF %1 == D: goto weiter
IF %1 == e: goto weiter
IF %1 == E: goto weiter
:Error
echo Bitte starten Sie die Installation mit folgenden Parametern:
echo INSTALL d:
echo:
echo d: bezeichnet das logische Laufwerk (z.B. c:)
echo:
goto ende
:weiter
echo Die Installation erfolgt in den Verzeichnissen %1\SV-FOTO
echo und %1\SV-FAX
echo:
echo * Erzeugen der Unterverzeichnisse
md %1\SV-FOTO > nul
md %1\SV-FAX > nul
echo * Installation der Programmdateien
copy bestell.txt %1\sv-foto > nul
copy bestell.txt %1\sv-fax > nul
copy list.exe %1\sv-foto > nul
copy list.exe %1\sv-fax > nul
copy share.doc %1\sv-foto > nul
copy share.doc %1\sv-fax > nul
copy x-foto.exe %1\SV-FOTO\*.* > nul
copy x-fax.exe %1\SV-FAX\*.* > nul
echo * Entpacken: SV-Foto
%1
CD %1\SV-FOTO
X-FOTO > nul
DEL x-foto.exe > nul
echo * Entpacken: SV-Fax
%1
CD %1\SV-FAX
X-FAX > nul
DEL x-fax.exe > nul
cd..
echo:
echo Starten Sie die Programme indem Sie in die entsprechenden
echo Unterverzeichnisse verzweigen und dann den Namen tippen.
echo:
echo CD SV-FOTO «Enter» und SV-FOTO «Enter» startet SV-Foto
echo CD SV-FAX «Enter» und SV-FAX «Enter» startet SV-Fax
echo:
echo Wenn ein Programm beendet ist gelangen Sie mit CD.. «Enter»
echo wieder in das Hauptverzeichnis um von dort z.B. ein anderes
echo SV-Programm mit den o.g. Befehlen zu starten.
echo:
echo * Installation beendet, Viel Erfolg!
:ende