home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1996 December
/
PCWKCD1296.iso
/
demo
/
wgelectr
/
cameval
/
cam31
/
misc.z
/
KEY_NT.ZIP
/
INSTALL.BAT
next >
Wrap
DOS Batch File
|
1995-07-03
|
2KB
|
58 lines
@echo off
if %PROCESSOR_ARCHITECTURE%.== x86. goto x86Env
if %PROCESSOR_ARCHITECTURE%.== MIPS. goto mipsEnv
if %PROCESSOR_ARCHITECTURE%.== ALPHA. goto alphaEnv
if %PROCESSOR_ARCHITECTURE%.== PPC. goto ppcEnv
goto error
:x86Env
REM *** To run the install without dialogs, use the /Q option
REM *** If the current directory is not the directory SETUPX86.EXE resides
REM *** use /P{Full path to SENTINEL.SYS} to specify the path.
REM e.g. SETUPX86.EXE /Q /PD:\PROUDCT\DRIVERS\WIN_NT\I386
SETUPX86.EXE
goto end
:mipsEnv
REM *** To run the install without dialogs, use the /Q option
REM *** If the current directory is not the directory SETUPMPS.EXE resides
REM *** use /P{Full path to SENTINEL.SYS} to specify the path.
REM e.g. SETUPMPS.EXE /Q /PD:\PROUDCT\DRIVERS\WIN_NT\MIPS
SETUPMPS.EXE
goto end
:alphaEnv
REM *** To run the install without dialogs, use the /Q option
REM *** If the current directory is not the directory SETUPAXP.EXE resides
REM *** use /P{Full path to SENTINEL.SYS} to specify the path.
REM e.g. SETUPAXP.EXE /Q /PD:\PROUDCT\DRIVERS\WIN_NT\ALPHA
SETUPAXP.EXE
goto end
:ppcEnv
REM *** To run the install without dialogs, use the /Q option
REM *** If the current directory is not the directory SETUPPPC.EXE resides
REM *** use /P{Full path to SENTINEL.SYS} to specify the path.
REM e.g. SETUPPPC.EXE /Q /PD:\PROUDCT\DRIVERS\WIN_NT\PPC
SETUPPPC.EXE
goto end
:error
ECHO.
ECHO Error PROCESSOR_ARCHITECTURE not defined!! Automatic processor
ECHO detection failed. To install the Sentinel Driver, please
ECHO do the following:
ECHO.
ECHO 1. If you are running NT on Intel platform (Most IBM compatible
ECHO machines are intel or intel compatible), please run the file
ECHO SETUPX86.EXE.
ECHO 2. If you are running NT on DEC Alpha platform, please run the
ECHO file SETUPAXP.EXE.
ECHO 3. If you are running NT on MIPS or MIPS compatible platform,
ECHO please run the file SETUPMPS.EXE.
ECHO 4. If you are running NT on PowerPC or PowerPC compatible platform,
ECHO please run the file SETUPPPC.EXE.
ECHO.
:end