Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I was following 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 app never actually seems to come up.

All the files are being laid down correctly, I even noticed that in the sample 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 actually run the command from the commandline while the echo message box was up it would bring up the DPInst install GUI.

But for some reason it doesn't seem to want to work when I'm using the real exe.

share|improve this question

1 Answer

up vote 2 down vote accepted

Found it, need to turn impersonate off.

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.