ドライバーのインストールを Wix に移植しようとしていますが、ドライバーの 1 つをインストールできません。difxapi 拡張機能を使用していますが、ログを有効にしてエラー メッセージを取得する方法がわかりません。
何が問題なのかを知るためにできることはありますか?
これは私が使用しているコードです。mlusb.inf
に依存していwindrvr6.sys
ます。remove の場合mlusb.inf
、最初の部分は問題なくインストールされます。
<ComponentGroup Id="MainDriverGroup" Directory="DriversFolder">
<Component Win64="no" Id="MainDriver" Guid="{04604482-1DA8-4E8E-B2BA-108E759F2D99}">
<difx:Driver Legacy='yes' ForceInstall='yes' Sequence='1'/>
<File Id='DriverINF' Vital="yes" Source="Files\windrvr6.inf" KeyPath="yes"/>
<File Id="DriverSYS" Vital="yes" Source="Files\windrvr6.sys"/>
<File Id="DriverCAT" Vital="yes" Source="Files\wd1021.cat"/>
</Component>
<Component Win64="no" Id="USBDriver" Guid="{63C42BC9-CE54-4C78-A0A1-224533986F45}">
<difx:Driver Legacy='yes' ForceInstall='yes' Sequence='2'/>
<File Id='DriverUSBINF' Source="Files\mlusb.inf" KeyPath="yes"/>
</Component>
</ComponentGroup>