As Stefan pointed out, you need two separate MSI packages to get two entries
in ARP. My point was that one way to offer functionality that can be added
or removed  is to have a package with two features and a single entry in
ARP, and then users can use the modify in that single ARP entry to remove
(or add) features.   Using features like this is generally safer if the two
components you're referring to are connected in some way and perhaps sharing
files. 

Phil Wilson 

________________________________

From: vij [mailto:[EMAIL PROTECTED] 
Sent: Thursday, August 31, 2006 9:37 PM
To: [EMAIL PROTECTED]
Cc: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Adding multiple entries in add/remove programs


Hi Phil Wilson,
 
I modified my code as you suggested, but still I don't see two entries in
add/remove program list. Below given is my code snippet.
 
<Feature Id='Feature1' Title='component1 only'
ConfigurableDirectory="TARGETDIR"  Level='1' AllowAdvertise='yes'>
   <MergeRef Id="Authoring.12345678-1234-1234-1234-123456789012"/>      
</Feature>
<Feature Id='Feature2' Title='component2 only'
ConfigurableDirectory="TARGETDIR"  Level='1' AllowAdvertise='yes'>
   <MergeRef Id="Player.12345678-1234-1234-1234-123456789014" />    
</Feature>
 
can you please give me small example to add multiple entries in add/remove
program list!!
 
thanks in advance
Vij



 



        Message: 1
        Date: Thu, 31 Aug 2006 08:15:35 -0700
        From: "Phil Wilson" 
        Subject: Re: [WiX-users] Adding multiple entries in add/remove
        programs
        To: 
        Message-ID: <[EMAIL PROTECTED]>
        Content-Type: text/plain; charset="us-ascii"
        
        It may be that features are what you could use. If each component is
in its
        own feature then users can go to the single entry in Add/Remove and
choose
        to add or remove each feature. 
        
        Phil Wilson 
        
        -----Original Message-----
        From: [EMAIL PROTECTED]
        [mailto:[EMAIL PROTECTED] On Behalf Of Stefan
Pavlik
        Sent: Thursday, August 31, 2006 12:18 AM
        To: vij
        Cc: wix-users@lists.sourceforge.net
        Subject: Re: [WiX-users] Adding multiple entries in add/remove
programs
        
        Hi,...
        
        It is not possible to have one entry in ARP (add remove programs)
for each
        component. The only way to do this is to create two MSI packages.
        
        regards
        
        Stefan
        
        vij wrote:
        > Hi,
        > I am new to WiX and wix user group.
        > 
        > I have an msi package which installs two components. Can I have
two 
        > entries (one for each component) in add/remove programs list?
        > Any help or pointer will be highly appreciated.
        > 
        > thanksRards
        > Vij
        > 
        >
----------------------------------------------------------------------
        > -- How low will we go? Check out Yahoo! Messenger's low
PC-to-Phone 
        > call rates.
        > 
        > com/evt=39663/*http://voice.yahoo.com>
        > 
        > 
        > 
        > 
        > com/evt=39663/*http://voice.yahoo.com>
        >
----------------------------------------------------------------------
        > --
        > 
        >
----------------------------------------------------------------------
        > --- Using Tomcat but need to do more? Need to support web
services, 
        > security?
        > Get stuff done quickly with pre-integrated technology to make your
job 
        > easier Download IBM WebSphere Application Server v.1.0.1 based on 
        > Apache Geronimo
        >
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=1216
        > 42
        > 
        > __________ NOD32 1.1731 (20060830) Information __________
        > 
        > This message was checked by NOD32 antivirus system.
        > http://www.eset.com
        > 
        > 
        > 
        > com/evt=39663/*http://voice.yahoo.com>
        > 
        > 
        > 
        > 
        > com/evt=39663/*http://voice.yahoo.com>
        >
----------------------------------------------------------------------
        > --
        > 
        > _______________________________________________
        > WiX-users mailing list
        > WiX-users@lists.sourceforge.net
        > https://lists.sourceforge.net/lists/listinfo/wix-users
        > 
        > 
        > __________ NOD32 1.1731 (20060830) Information __________
        > 
        > This message was checked by NOD32 antivirus system.
        > http://www.eset.com
        > 
        > 
        > 
        > com/evt=39663/*http://voice.yahoo.com>
        
        --
        Stefan Pavlik | [EMAIL PROTECTED]
        Whitestein Technologies | www.whitestein.com Panenska 28 | SK-81103
        Bratislava | Slovak Republic Tel +421(2)5930-0735 | Fax
+421(2)5443-5512
        
        
-------------------------------------------------------------------------
        Using Tomcat but need to do more? Need to support web services,
security?
        Get stuff done quickly with pre-integrated technology to make your
job
        easier Download IBM WebSphere Application Server v.1.0.1 based on
Apache
        Geronimo
        
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
        _______________________________________________
        WiX-users mailing list
        WiX-users@lists.sourceforge.net
        https://lists.sourceforge.net/lists/listinfo/wix-users
        
        
        
        
        ------------------------------
        
        Message: 2
        Date: Thu, 31 Aug 2006 08:15:47 -0700
        From: Bob Arnson 
        Subject: Re: [WiX-users] How to not dispaly a dialog box when
feature
        is not selected
        To: Brad Edwards , WiX-users
        
        Message-ID: <[EMAIL PROTECTED]>
        Content-Type: text/plain; charset="iso-8859-1"
        
        Please keep /wix-users/ on the thread so everyone can participate.
        
        Brad Edwards wrote:
        >
        > Thanks for the reply...it works great...however...In my 
        > CustomizeDlg.wxs which is part of the wixlib I have the next
button 
        > value set to WixUI_CustomizeDlg_Next which is set to a specific 
        > dialog. If the feature that I need for that dialog is not selected

        > then I want the WixUI_CustomizeDlg_Next to be set to another
dialog. 
        > So in essence I'm wanting to change a Property based on a
condition. 
        > Is that possible? I don't really want to change my
CustomizeDlg.wxs 
        > file because I use that on other installation packages. Is that
the 
        > only way I can do it?
        >
        In WiX v2, you can use custom actions or control events to set the
value 
        of the properties WixUI uses for the Back and Next button
navigation. In 
        WiX v3, you can publish "floating" control events instead, which is 
        easier because you don't have to modify each the dialogs that are 
        affected, just copy the set fragment and change the Publish
elements.
        >
        > Also on a whole nother topic, I have a dialog box where a user
will 
        > need to enter a path to an exiting application. When the user
clicks 
        > on the Next button I need it fire off a custom action (vbscript)
using 
        > that path they just entered. I tried using the InstallUISequence
to 
        > fire the custom action After the Dialog, but that didn't seem to 
        > work. Any suggestions? Thanks for your time Bob.
        >
        It depends on what the custom action does. Machine changes shouldn't
be 
        made from the UI; instead, the UI should gather the needed data and
the 
        CA scheduled appropriate in the execute sequence.
        
        What does your CA do? Maybe there's another way of doing it.
        
        -- 
        sig://boB
        http://bobs.org
        
        -------------- next part --------------
        An HTML attachment was scrubbed...
        URL:
http://sourceforge.net/mailarchive/forum.php?forum=wix-users/attachments/200
60831/148b6fbe/attachment.html 
        
        ------------------------------
        
        Message: 3
        Date: Thu, 31 Aug 2006 08:22:46 -0700
        From: Bob Arnson 
        Subject: Re: [WiX-users] .MSI for x64...
        To: Chesong Lee 
        Cc: Robert Randall ,
        wix-users@lists.sourceforge.net
        Message-ID: <[EMAIL PROTECTED]>
        Content-Type: text/plain; charset=ISO-8859-1; format=flowed
        
        Chesong Lee wrote:
        > 
        > Not VersionNT64
        > 
        You should look at the Msix64 property instead. VersionNT64 is set
on 
        all Win64 platforms, including Itanium. (Pretty rare, granted.)
        
        -- 
        sig://boB
        http://bobs.org
        
        
        
        
        ------------------------------
        
        Message: 4
        Date: Thu, 31 Aug 2006 08:32:22 -0700
        From: Bob Arnson 
        Subject: Re: [WiX-users] ControlEvent, DoAction, WixUI_minimal
        To: Denis Kolygin 
        Cc: wix-users@lists.sourceforge.net
        Message-ID: <[EMAIL PROTECTED]>
        Content-Type: text/plain; charset=ISO-8859-1; format=flowed
        
        Denis Kolygin wrote:
        > Are there any way to populate ControlEvent table without adding
all that
        > UI/Dialog/Control/Publish into my .wxs file?
        > 
        No, but in WiX v3, you can add "floating" Publish elements to add
        behavior to existing controls.
        > The idea behind is that I'm using WixUI_minimal and I would like
to launch
        > CA after user clicks Finish button on ExitDialog. It is not
possible to
        > schedule custom action in InstalleUISequence after ExitDialog. 
        > I can add required ControlEvent entry in installer with ORCA after
it is
        > built but I want candle and light to do the job.
        > 
        There's already support for that behavior in WiX v3. Just specify
        property values for WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT and
ExitDialog
        shows a checkbox and sets WIXUI_EXITDIALOGOPTIONALCHECKBOX to '1'
when
        checked. You can also show a text box by specifying
        WIXUI_EXITDIALOGOPTIONALTEXT.
        
        -- 
        sig://boB
        http://bobs.org
        
        
        
        ------------------------------
        
        Message: 5
        Date: Thu, 31 Aug 2006 10:41:30 -0500
        From: "Joe Harbert" 
        Subject: [WiX-users] Install Different Components on Different
Drives
        To: 
        Message-ID: 
        Content-Type: text/plain; charset=US-ASCII
        
        Hi,
        
        I have an installation that needs to install some components onto
the machine's C drive and other components onto the machine's E drive. Is
there an easy way to do this? I've searched through the mailing lists and
googled but have not found a way to do this. I'm using WIX 3.0 by the way.
        
        
        Regards,
        Joe Harbert
        
        
        
        
        ------------------------------
        
        Message: 6
        Date: Thu, 31 Aug 2006 08:41:50 -0700
        From: Rob Mensching 
        Subject: Re: [WiX-users] .MSI for x64...
        To: Robert Randall ,
        "wix-users@lists.sourceforge.net" 
        Message-ID:
        
<[EMAIL PROTECTED]
rosoft.com>
        
        Content-Type: text/plain; charset="us-ascii"
        
        This topic from MSDN might be interesting as well:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/msi/setup/w
indows_installer_start_page.asp?frame=true
        
        
        
        ------------------------------
        
        Message: 7
        Date: Thu, 31 Aug 2006 19:43:53 +0400
        From: "Peter G. Sakhno" 
        Subject: [WiX-users] How to create feature tree dialog with
        alternative features?
        To: wix-users@lists.sourceforge.net
        Message-ID: <[EMAIL PROTECTED]>
        Content-Type: text/plain; charset=ISO-8859-1; format=flowed
        
        I have two features. And only one of them should be installed. I
want to 
        show a dialog with Feature tree that will drop installation state of
one 
        feature when the other is selected to be installed.
        Is it possible to create such behavior with WiX code or I need to
make 
        sort of CA?
        
        -- 
        Best regards,
        Peter G. Sakhno
        C-MAP RUSSIA Ltd
        http://www.c-map.ru/
        
        
        
        ------------------------------
        
        Message: 8
        Date: Thu, 31 Aug 2006 10:45:31 -0500
        From: "Darren Kulp" 
        Subject: Re: [WiX-users] .MSI for x64...
        To: "Rob Mensching" , "Robert Randall"
        , 
        Message-ID:
        <[EMAIL PROTECTED]>
        Content-Type: text/plain; charset="us-ascii"
        
        Did you mean to point to the start page? Perhaps this topic could be
        helpful:
        
        
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/msi/set
        up/windows_installer_on_64_bit_operating_systems.asp
        
        -----Original Message-----
        From: [EMAIL PROTECTED]
        [mailto:[EMAIL PROTECTED] On Behalf Of Rob
        Mensching
        Sent: Thursday 31 August 2006 10:42
        To: Robert Randall; wix-users@lists.sourceforge.net
        Subject: Re: [WiX-users] .MSI for x64...
        
        This topic from MSDN might be interesting as well:
        
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/msi/set
        up/windows_installer_start_page.asp?frame=true
        
        
------------------------------------------------------------------------
        -
        Using Tomcat but need to do more? Need to support web services,
        security?
        Get stuff done quickly with pre-integrated technology to make your
job
        easier
        Download IBM WebSphere Application Server v.1.0.1 based on Apache
        Geronimo
        
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
        _______________________________________________
        WiX-users mailing list
        WiX-users@lists.sourceforge.net
        https://lists.sourceforge.net/lists/listinfo/wix-users
        
        
        
        ------------------------------
        
        
-------------------------------------------------------------------------
        Using Tomcat but need to do more? Need to support web services,
security?
        Get stuff done quickly with pre-integrated technology to make your
job easier
        Download IBM WebSphere Application Server v.1.0.1 based on Apache
Geronimo
        
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
        
        ------------------------------
        
        _______________________________________________
        WiX-users mailing list
        WiX-users@lists.sourceforge.net
        https://lists.sourceforge.net/lists/listinfo/wix-users
        
        
        End of WiX-users Digest, Vol 3, Issue 147
        *****************************************
        


________________________________

All-new Yahoo! Mail
<http://us.rd.yahoo.com/evt=43256/*http://advision.webevents.yahoo.com/mailb
eta> - Fire up a more powerful email and get things done faster.


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to