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
395 B
16 lines
395 B
@echo off
|
|
if %1# == # goto usage
|
|
mkdir \tmp
|
|
del \tmp\filename
|
|
where /r %1 *.inf > \tmp\filename
|
|
oeminf.exe \tmp\filename MCA > \tmp\x
|
|
oeminf.exe \tmp\filename ISA >> \tmp\x
|
|
oeminf.exe \tmp\filename EISA >> \tmp\x
|
|
oeminf.exe \tmp\filename "Jazz-Internal Bus" >> \tmp\x
|
|
cat \tmp\x inf > oemnadzz.inf
|
|
goto end
|
|
|
|
:usage
|
|
echo usage: go "drivelocation" eg: go f:\drvlib\netcard
|
|
|
|
:end
|