bryan rasmussen wrote:
candle.exe -out examples\wixui\TestMinimal.wixobj examples\wixui\Testminimal.wxs

light.exe -out test20070723001.msi examples\wixui\TestMinimal.wixobj

Your light.exe command also needs to include wixui.wixlib, per the doc:


     How to add a WixUI stock dialog set to a product installer

Assuming you have an existing installer that's functional but just lacking a user interface, here are the steps you need to follow to use a WixUI stock dialog set:

  1. Add a UIRef element to your installer source code, using an Id
     attribute of one of the above dialog sets. For example:

   <Product ...>
     <UIRef Id="WixUI_InstallDir" />
   </Product>

  2. Add wixui.wixlib and the appropriate WixUI localization file to
     your *light* command line. For example:

     light Mondo.wixobj *%WIXUI_PATH%\WixUI.wixlib -loc 
%WIXUI_PATH%\WixUI_en-us.wxl *-out Mondo.msi


--
sig://boB
http://joyofsetup.com/

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to