home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1997 July
/
Chip_1997-07_cd.bin
/
tema
/
mattes
/
ip
/
ip30
/
sysadmin
/
sentinel
/
win_nt
/
install.bat
< prev
next >
Wrap
DOS Batch File
|
1996-05-08
|
2KB
|
62 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
REM SETUPX86.EXE /Q /U to un-install the driver
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
REM SETUPMPS.EXE /Q /U to un-install the driver
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
REM SETUPAXP.EXE /Q /U to un-install the driver
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
REM SETUPPPC.EXE /Q /U to un-install the driver
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