home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Direkt 1997 #6-#7
/
CDD_6_7_97.ISO
/
cdd
/
patches
/
bm97ptch
/
hdinst.bat
< prev
next >
Wrap
DOS Batch File
|
1996-11-11
|
2KB
|
107 lines
@echo off
cls
if "%1" == "" goto usage
if "%2" == "" goto usage
if "%3" == "" goto usage
if exist %1:\BM97\BM97.EXE goto cont1
echo.
echo. Fehler : Falsches CD-ROM Laufwerk angegeben oder falsche CD eingelegt.
echo.
echo Falscher Parameter : %1
echo.
goto end
:cont1
echo "Test" >%2\TESTFILE.TMP
if exist %2\TESTFILE.TMP goto cont2
md %2 >nul:
echo "Test" >%2\TESTFILE.TMP
if exist %2\TESTFILE.TMP goto cont2
echo.
echo. Fehler : Auf das Ziellaufwerk/Pfad kann nicht geschrieben werden.
echo.
echo Falscher Parameter : %2
echo.
goto end
:cont2
del %2\TESTFILE.TMP >nul:
if "%3" == "1" goto level1
if "%3" == "2" goto level2
if "%3" == "3" goto level3
:usage
echo.
echo Installation BM97
echo.
echo.
echo.
echo Aufruf : INST [CD-ROM-Laufwerk] [LAUFWERK:PFAD] [Install-Level]
echo.
echo Beispiel : INST D C:\BM97 1
echo.
echo.
goto end
:level1
echo.
echo Installiere BM97 (Level 1)
echo.
md %2 >nul:
echo Kopiere Dateien...
echo.
xcopy %1:\bm97 %2
xcopy %1: %2
for %%1 in ( SOUNDS FASTGFX DRIVERS TMP TEXT) do xcopy %1:\BM97\%%1 %2\%%1\
for %%1 in ( SAVE 3D DATEN) do xcopy %1:\BM97\%%1 %2\%%1\ /s
echo 1 > %2\bm97.cfg
goto instready
:level2
echo.
echo Installiere BM97 (Level 2)
echo.
md %2 >nul:
echo Kopiere Dateien...
echo.
xcopy %1:\bm97 %2
xcopy %1: %2
for %%1 in ( SOUNDS GRAFIK FASTGFX DRIVERS TMP TEXT) do xcopy %1:\BM97\%%1 %2\%%1\
for %%1 in ( SAVE 3D DATEN) do xcopy %1:\BM97\%%1 %2\%%1\ /s
echo 2 > %2\bm97.cfg
goto instready
:level3
echo.
echo Installiere BM97 (Level 3)
echo.
md %2 >nul:
echo Kopiere Dateien...
echo.
xcopy %1:\bm97 %2
xcopy %1: %2
for %%1 in ( SOUNDS GRAFIK FASTGFX DRIVERS TMP MANAGER TEXT PTR FONT SOUND) do xcopy %1:\BM97\%%1 %2\%%1\
for %%1 in ( SAVE 3D DATEN SPBILDER WAPPEN) do xcopy %1:\BM97\%%1 %2\%%1\ /s
echo 3 > %2\bm97.cfg
goto instready
:instready
echo.
echo Installation abgeschlossen
echo.
echo Zur Konfiguration Ihrer Soundkarte bitte
echo
echo %2\DRIVERS\SETSOUND.EXE
echo.
echo aufrufen.
:end