home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1997 April (Special)
/
Chip-Special_1997-04_cd.bin
/
diamond
/
stealth
/
3d2wnt_1
/
3d2wnt_1.exe
/
rar
/
NTDISK.BAT
< prev
next >
Wrap
DOS Batch File
|
1996-04-11
|
686b
|
21 lines
@echo off
echo Windows NT Driver Diskette Generator for Stealth 3D 2000 Series
echo copyright 1996 Diamond Multimedia Systems, Inc.
if "%1" == "" goto FAILURE
if "%2" == "" goto FAILURE
if not exist %1\winnt\stlth3d.sys goto FAILURE
copy %1\winnt\oemsetup.inf %2
copy %1\winnt\stlth3d.dll %2
copy %1\winnt\stlth3d.sys %2
echo Done! Please remove the diskette from the diskette drive.
echo Using a diskette label, label the diskette "Stealth 3D 2000 Series
echo Windows NT Driver Diskette".
goto end
:FAILURE
echo USAGE: NTDISK X: A:
echo Where X is the drive letter of the CD-ROM drive and
echo A is the drive letter of the 3.5" floppy diskette drive
:end