home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Inside Multimedia 1996 September
/
IMM0996.ISO
/
driver
/
diamond.mm
/
diamond
/
stealth
/
64v2xx1
/
765w95dx.exe
/
INSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1996-02-16
|
2KB
|
52 lines
@ECHO OFF
IF NOT EXIST DIAMOND.ZIP GOTO NOTSETUP
IF NOT EXIST DIRECTX.ZIP GOTO NOTSETUP
IF NOT EXIST PKUNZIP.EXE GOTO NOTSETUP
:START
CLS
ECHO.
ECHO.
ECHO.
ECHO ╔════════════════════════════════════════════════════╗
ECHO ║ Diamond Multimedia Systems ║
ECHO. ╟────────────────────────────────────────────────────╢
ECHO ║ INSTALL.BAT will correctly decompress the Diamond ║
ECHO ║ Diamond Stealth64 Video 2001 Series and Microsoft ║
ECHO ║ DirectX Drivers for later installation. ║
ECHO ║ ║
ECHO ║ The Diamond drivers will be placed in ║
ECHO ║ C:\765W9596\ and the DirectX software will be ║
ECHO ║ placed in C:\DIRECTX\. There will be a README.TXT ║
ECHO ║ in each directory to guide you through the ║
ECHO ║ installation. ║
ECHO ║ ║
ECHO ║ The decompressed files will use about 4.5Mb, so ║
ECHO ║ please make certain there is enough disk space. ║
ECHO ╚════════════════════════════════════════════════════╝
PAUSE
CLS
PKUNZIP -d DIAMOND.ZIP C:\
PKUNZIP -d DIRECTX.ZIP C:\
GOTO END
:NOTSETUP
CLS
ECHO.
ECHO.
ECHO.
ECHO ╔════════════════════════════════════════════════════╗
ECHO ║ Diamond Multimedia Systems ║
ECHO. ╟────────────────────────────────────────────────────╢
ECHO ║ ║
ECHO ║ Problem: All the files from the download must be ║
ECHO ║ in the same directory. Please run the ║
ECHO ║ self-extracing file that was downloaded ║
ECHO ║ in a temporary directory. ║
ECHO ║ ║
ECHO ╚════════════════════════════════════════════════════╝
GOTO END
:END