似乎无法让Wix安装驱动程序

时间:2011-01-27 19:00:03

标签: windows wix driver dpinst

我按照这里的教程:http://www.codeproject.com/KB/library/driver-install-with-wix.aspx但它似乎不想工作 - DPInst exe似乎从未真正运行过?所有文件都正确放置 - 我甚至注意到在教程中他们错过了一个引用。

我的自定义操作如下所示:

<CustomAction Id='Install_M2_Driver'
              Execute='deferred' Directory='DRIVER_ROOT'
              ExeCommand='"[dirDpInst]DPInst.exe" /SA /PATH "[dirM2]"'
              Return='ignore' />

我甚至尝试用一个简单的exe替换DPInst.exe,回复我的参数,一切看起来都不错,如果我实际上从命令行运行命令,而回音消息框已启动它会带来DPInst安装GUI。

1 个答案:

答案 0 :(得分:5)

找到它,需要关闭模仿:

<CustomAction Id='Install_M2_Driver'
              Execute='deferred'
              Directory='DRIVER_ROOT'
              Impersonate='no'
              ExeCommand='"[dirDpInst]DPInst.exe" /SA /PATH \"[dirM2]\"'
              Return='ignore' />