home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 April (Special) / Chip-Special_1997-04_cd.bin / trident / nt35drv / nt35drv.exe / NTINSTL.BAT next >
DOS Batch File  |  1994-12-20  |  557b  |  29 lines

  1. echo off
  2. cls
  3. if "%1"=="" goto msg
  4. if exist %1\system32\video.inf goto ins
  5. echo.
  6. echo Windows NT path name error
  7. goto msg
  8.  
  9. :ins
  10. echo copy trident.sys %1\system32\drivers\trident.sys
  11. copy trident.sys %1\system32\drivers\trident.sys
  12. rem echo copy video.inf %1\system32\video.inf
  13. rem copy video.inf %1\system32\video.inf
  14. goto exit
  15.  
  16. :msg
  17.  
  18. echo.
  19. echo.
  20. echo Usage:   NTINSTL [nt_drv:\nt_path]
  21. echo.
  22. echo Where:   nt_drv:\nt_path -- The driver and path where Windows NT is installed
  23. echo.
  24. echo Example: NTINSTL C:\WINNT35
  25.  
  26. :exit
  27. echo.
  28.  
  29.