[WiX-users] Set ADDLOCAL from UI

2012-08-01 Thread Nelya Iva
I'am using WixUI_Mondo set, wix 3.6, Windows XP SP3,. On the SetupDlg I want to have two buttons: ClientButton,ServerButton. They will initiate installing two different configurations with muttually exclusive features. Here is mya code: OLDARPFOUND 1

Re: [WiX-users] Set ADDLOCAL from UI

2012-08-01 Thread Nelya Iva
Thank's a lot! I already broke my mind and it was so easy! 2012/8/1 jhennessey > Don't try to set feature states by directly setting the ADDLOCAL property > from the UI. Instead you should use the > > http://msdn.microsoft.com/en-us/library/windows/desktop/aa367537%28v=vs.85%29.aspx > AddLocal

[WiX-users] Fixing ICE57 on perUser installation

2012-09-14 Thread Nelya Iva
Our application writes some settings to the registry into the HKCU hive. I want to delete this settings during uninstall. Here is code: REMOVE="ALL" AND NOT UPGRADINGPRODUCTCODE Why I'm getting ICE57? Installation is per-User. Thank's in adv

Re: [WiX-users] Fixing ICE57 on perUser installation

2012-09-14 Thread Nelya Iva
s/desktop/aa368007%28v=vs.85%29 > .aspx > > Since REMOVE does not equal ALL when installing, the condition will be > false > and the component never gets installed. > > -Original Message- > From: Nelya Iva [mailto:nelya@gmail.com] > Sent: 14 September 2012

Re: [WiX-users] Fixing ICE57 on perUser installation

2012-09-17 Thread Nelya Iva
Can anyone clarify where is here in my code per-machine element, please? 2012/9/14 Nelya Iva > Thank you for response. > INSTALLLOCATION - is a folder in ProgramFiles directory.. It's a > per-machine location? > So if i want to delete enries during uninstall then i need to p

Re: [WiX-users] Fixing ICE57 on perUser installation

2012-09-18 Thread Nelya Iva
move the condition entirely. The component will be installed but will > have > no effect until you uninstall the application. At that point, when the > component is removed, the registrykey will be removed also. > > Sorry I didn't see your earlier reply. > > -Original

Re: [WiX-users] set a property using If statements

2012-09-19 Thread Nelya Iva
A small addition to Peter's answer. I think that you'll get a warning like: 'duplicate of id SetNumloggers'. So better use CustomAction element with two different 'ID'. ProductName = "somevalue" 2012/9/19 Peter Shirtcliffe > Yes. Youd use a pair of SetProperty elements (or a default proper

Re: [WiX-users] Weird behavior on conditions

2012-09-20 Thread Nelya Iva
Since both conditions are true, then wix checks the value of "Order". Element with the higher value of 'Order' will be used. 2012/9/20 Natalie Carr > Hi, having this problem with this code: > > > >Value="DatascanPortDlg" Order="1"> > >Value="NumLoggersDlg" Order="2"> > >V

[WiX-users] Multilanguage managed bootstrapper

2014-03-05 Thread Nelya Iva
Hi! I am struggling with making my managed bootstrapper multilanguage. It's working brilliant on install and remove. But problem rase during repair mode. Each time when bootstrapper launches it shows the window with listbox of languages to select. I had embed all mst-files inside one english insta

Re: [WiX-users] Multilanguage managed bootstrapper

2014-03-05 Thread Nelya Iva
Hmm. It's look like bootstrapper uninstalls product only if it was installed without any transform ( default is: TRANSFORMS="" ). Product codes for each localized msi are different. Any advice? С уважением, Найля Исяндавлетова 2014-03-05 12:09 GMT+04:00 Nelya Iva : > Hi! I

Re: [WiX-users] Multilanguage managed bootstrapper

2014-03-05 Thread Nelya Iva
gt; > -Original Message- > From: Nelya Iva [mailto:nelya@gmail.com] > Sent: Wednesday, March 5, 2014 3:53 AM > To: General discussion for Windows Installer XML toolset. > Subject: Re: [WiX-users] Multilanguage managed bootstrapper > > Hmm. It's look like boots