Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
379 B

  1. @echo off
  2. if %1# == # goto usage
  3. mkdir \tmp
  4. del \tmp\filename
  5. where /r %1 *.inf > \tmp\filename
  6. oeminf.exe \tmp\filename MCA > \tmp\x
  7. oeminf.exe \tmp\filename ISA >> \tmp\x
  8. oeminf.exe \tmp\filename EISA >> \tmp\x
  9. oeminf.exe \tmp\filename "Jazz-Internal Bus" >> \tmp\x
  10. cat \tmp\x inf > oemnadzz.inf
  11. goto end
  12. :usage
  13. echo usage: go "drivelocation" eg: go f:\drvlib\netcard
  14. :end