home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1997 April (Special)
/
Chip-Special_1997-04_cd.bin
/
trident
/
nt35drv
/
nt35drv.exe
/
NTINSTL.BAT
next >
Wrap
DOS Batch File
|
1994-12-20
|
557b
|
29 lines
echo off
cls
if "%1"=="" goto msg
if exist %1\system32\video.inf goto ins
echo.
echo Windows NT path name error
goto msg
:ins
echo copy trident.sys %1\system32\drivers\trident.sys
copy trident.sys %1\system32\drivers\trident.sys
rem echo copy video.inf %1\system32\video.inf
rem copy video.inf %1\system32\video.inf
goto exit
:msg
echo.
echo.
echo Usage: NTINSTL [nt_drv:\nt_path]
echo.
echo Where: nt_drv:\nt_path -- The driver and path where Windows NT is installed
echo.
echo Example: NTINSTL C:\WINNT35
:exit
echo.