home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Spiele Spiele Spiele 1
/
spiele-spiele-spiele-topware.iso
/
spiele
/
top4016
/
gepackt.exe
/
INSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1993-07-16
|
2KB
|
73 lines
@echo off
cls
echo.
echo Installation von Art of War auf Festplatte
echo ------------------------------------------
echo.
echo.
echo Falls ein Fehler auftaucht, überprüfen Sie bitte, ob Sie hinter dem
echo Befehl INSTALL das Laufwerk korrekt angegeben haben.
echo.
echo Eingabe : INSTALL [Laufwerk]
echo.
echo z.B. INSTALL c:
echo.
echo.
echo ═════════════════════════════════════════════════════════════════════════════
echo.
echo.
echo Sie haben dieses Ziellaufwerk angegeben : [%1]
echo.
echo -----------------------------------------------------------------------------
echo.
echo.
echo.
pause
if NOT %1=="" goto ok
goto fehler
:ok
mkdir %1\artofwar
mkdir %1\artofwar\level
copy \artofwar\level\*.* %1\artofwar\level
mkdir %1\artofwar\gra
copy \artofwar\gra\*.* %1\artofwar\gra
copy \artofwar\*.exe %1\artofwar
copy \*.txt %1\artofwar
echo.
echo ═════════════════════════════════════════════════════════════════════════════
echo ═════════════════════════════════════════════════════════════════════════════
echo Wenn KEINE Fehlermeldung erschienen ist, und alle Files ordnungsgemäß auf
echo das Ziellaufwerk copiert wurden, können Sie das Programm von der Festplatte
echo aus dem Unterverzeichnis [ARTOFWAR] mit "ARTOFWAR" starten.
echo ═════════════════════════════════════════════════════════════════════════════
echo ═════════════════════════════════════════════════════════════════════════════
goto ende:
:fehler
echo !!ERROR!!!!ERROR!!!!ERROR!!!!ERROR!!!!ERROR!!!!ERROR!!!!ERROR!!
echo.
echo Der Laufwerks-Parameter nach "INSTALL" fehlt bzw. ist unzulässig !
echo.
echo !!ERROR!!!!ERROR!!!!ERROR!!!!ERROR!!!!ERROR!!!!ERROR!!!!ERROR!!
echo.
echo.
echo.
:ende