0

我正在使用DPInst -tool 安装驱动程序(我有.inf.sys文件)。在dpinst.xml我指定了search -element如下:

<search>
    <subDirectory>*</subDirectory>
</search>

但是在安装过程中会出现“需要的文件”弹出窗口,要求我指定.sys文件的位置。是否可以在dpinst.xml.inf
文件 中指定安装之前的位置?

4

2 回答 2

0

DPInst 搜索 .inf 文件。您告诉 DPInst 在与 DPInst 工作目录相关的所有子文件夹中递归搜索。您的 .inf 文件应指向 .sys 文件。

此处查看有关 .inf 文件的信息,在此处查看有关 DPInst 的更多信息。

于 2013-08-22T12:06:48.780 回答
0

One solution can be that you keep the driver files (.inf and .sys files) in the same folder where you have kept the dpinst.exe. Then run the exe which will take the current location itself to look for driver files. second, dpinst.exe has a "/Path" flag followed by path of the driver files which you want to specify. This can be passed as a command line argument to the dpinst.exe. You can check these flags by running the command : \dpinst.exe /?

于 2013-10-01T11:15:23.360 回答