I cannot figure out to install a driver using WIX 2.0 that does not require the Windows "Found New Hardware Wizard" to pop up when the hardware device is connected to the PC for the first time after installation.  My driver is packaged in a WIX 2.0 merge module and installs successfully. Below is a the code for my driver without GUIDs of course.  Any ideas?
  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <Wix xmlns='http://schemas.microsoft.com/wix/2003/01/wi'>  
  3. <Module Id='Example' Guid='PUT-GUID-HERE' Language='1033' Version="1.0.0.0">  
  4. <Package Id='PUT-GUID-HERE' Description="Driver Merge Module Example"/>  
  5.   
  6. <Directory Id='TARGETDIR' Name='SourceDir'>  
  7.  <Directory Id='INSTALLDIR' Name='Drivers'>  
  8.   <Component  
  9.    Id="Example Driver Component"  
  10.    Guid="PUT-GUID-HERE"  
  11.    DriverAddRemovePrograms='yes'  
  12.    DriverDeleteFiles='no'  
  13.    DriverForceInstall='no'  
  14.    DriverLegacy='yes'  
  15.    DriverPlugAndPlayPrompt='no'  
  16.    DriverSequence='0'>  
  17.   
  18.    <File Id='DRIVERINF' Name='driver.inf' LongName='driver.inf' Source='driver.inf' />  
  19.   </Component>  
  20.  </Directory>  
  21. </Directory>  
  22.   
  23. </Module>  
  24. </Wix> 
Thanks,
Jesse
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to