Can't seem to get Wix to install driver

前端 未结 1 593
死守一世寂寞
死守一世寂寞 2020-12-19 19:32

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 neve

相关标签:
1条回答
  • 2020-12-19 19:49

    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' />
    
    0 讨论(0)
提交回复
热议问题