Please send general support questions to the: 
wix-us...@lists.sourceforge.net<mailto:wix-us...@lists.sourceforge.net> mailing 
list.

This mailing list is used to discuss developing the WiX toolset itself.

Hi,

After my setup finishes, I launch the installed application automatically 
without asking to the user in the interactive mode.Now I have the silent 
installer and I want to launch the application only if user sets a specific 
parameter to YES. For example,

msiexec.exe /i setup.msi LAUNCH_APP=YES /qn

To do this,

I have added,

<Property Id="LAUNCH_APP">NO</Property>
<Component Id='WebAppSettings' Guid='0a87956e-13e3-41f2-8e52-8b6ebc3c48a2' 
Feature='ProductFeature' Directory='SUBDIR' > <util:XmlFile 
Id='LaunchAppAfterInstall' Action='setValue' 
ElementPath='/configuration/system.web/launchApp/@mode' 
File='[SUBDIR]web.config' Value='[LAUNCH_APP]' /> <CreateFolder /></Component>
<Feature Id="ProductFeature" Title="UtilInstaller" Level="1"> 
<ComponentGroupRef Id="SimpleWebAppGroup" /> <ComponentRef Id="WebAppSettings" 
/></Feature>
<InstallExecuteSequence> <Custom Action="RunMainApp" 
Before="InstallFinalize">LAUNCH_APP="YES"</Custom> </InstallExecuteSequence>


I got the following error: product.wxs(63) : error LGHT0094 : Unresolved 
reference to symbol 'WixComponentGroup:SimpleWebAppGroup' in section 
'Product:*'. Press any key to continue . . .

So basically it complains about <ComponentGroupRef Id="SimpleWebAppGroup" />

How can I solve this issue?

Many thanks.

Could anyone help?
Thanks,
------------------------------------------------------------------------------
HPCC Systems Open Source Big Data Platform from LexisNexis Risk Solutions
Find What Matters Most in Your Big Data with HPCC Systems
Open Source. Fast. Scalable. Simple. Ideal for Dirty Data.
Leverages Graph Analysis for Fast Processing & Easy Data Exploration
http://p.sf.net/sfu/hpccsystems
_______________________________________________
WiX-devs mailing list
WiX-devs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-devs

Reply via email to