dpinst

How do I install drivers using Burn and DPInst after MSI installation?

痞子三分冷 提交于 2019-12-04 05:28:55
问题 I have a setup MSI for our application, and I also have signed FTDI drivers that need to be installed as well. I'd like for them to be installed with Burn rather than the WiX MSI to keep CustomActions out of the MSI (however, I've tried the CA route as well). I've tried putting the instruction in an ExePackage, but the SourceFile attribute asks for the file location during build, not runtime (e.g. <ExePackage Id="InstallDrivers" DisplayName="Installing Drivers" SourceFile="[InstallFolder

How do I install drivers using Burn and DPInst after MSI installation?

耗尽温柔 提交于 2019-12-02 07:23:39
I have a setup MSI for our application, and I also have signed FTDI drivers that need to be installed as well. I'd like for them to be installed with Burn rather than the WiX MSI to keep CustomActions out of the MSI (however, I've tried the CA route as well). I've tried putting the instruction in an ExePackage , but the SourceFile attribute asks for the file location during build, not runtime (e.g. <ExePackage Id="InstallDrivers" DisplayName="Installing Drivers" SourceFile="[InstallFolder]Drivers\DPInst.exe" InstallCommand="/SA /SW" PerMachine="yes" After="MyMSISetup" Description="Installing

Can't seem to get Wix to install driver

半城伤御伤魂 提交于 2019-11-29 11:44:48
I followed the tutorial here: http://www.codeproject.com/KB/library/driver-install-with-wix.aspx but it just doesn't seem to want to work - the DPInst exe never actually seems to run? All the files are being laid-down correctly - I even noticed that in the tutorial they missed a quote. My custom action looks like this: <CustomAction Id='Install_M2_Driver' Execute='deferred' Directory='DRIVER_ROOT' ExeCommand='"[dirDpInst]DPInst.exe" /SA /PATH "[dirM2]"' Return='ignore' /> I even tried replacing the DPInst.exe with a simple exe that echoed the arguments back to me, everything looks good, if I

Can't seem to get Wix to install driver

流过昼夜 提交于 2019-11-28 05:23:11
问题 I followed the tutorial here: http://www.codeproject.com/KB/library/driver-install-with-wix.aspx but it just doesn't seem to want to work - the DPInst exe never actually seems to run? All the files are being laid-down correctly - I even noticed that in the tutorial they missed a quote. My custom action looks like this: <CustomAction Id='Install_M2_Driver' Execute='deferred' Directory='DRIVER_ROOT' ExeCommand='"[dirDpInst]DPInst.exe" /SA /PATH "[dirM2]"' Return='ignore' /> I even tried