[WiX-users] WixUI issue when using two-pass linking with light

2010-03-19 Thread Jeffrey Cutting
I've just modified my install build to call light.exe (via the MSBuild task) with -xo and -bf and then do a second pass with the .wixout (also via the Light MSBuild task) so I can bind the install binaries into the .wixpdb. I want to generate patches without using admin installs, but since I wa

[WiX-users] how to use custom dlg

2010-03-19 Thread subramanyeswari
Hi , I am using verifyremovedlg as i want dialog box on uninstall. the below is the code snippet. / but on light i am getting unresolved reference for Verifyremovedlg. I know for sure i am doing wrong but where? Thanks&Regards, Subramanyeswari -- View this message in context: htt

Re: [WiX-users] how to use custom dlg

2010-03-19 Thread subramanyeswari
I modified code like this. 1 Installed and i have verifyremovedlg.wxs in the current path. How to link these two files? Regards -- View this message in context: http://n2.nabble.com/how-to-use-custom-dlg-tp4761972p4761995.html Sent from the wix-users mailing list archive

Re: [WiX-users] how to use custom dlg

2010-03-19 Thread Rob Hamflett
You have to run verifyremoveddlg.wxs through candle to get the .wixobj file, and then specify this extra file when calling light. Rob On 19/03/2010 10:14, subramanyeswari wrote: > > I modified code like this. > > > > Value="VerifyRemoveDlg">1 >Event="NewDialog" > Value="Main

Re: [WiX-users] how to use custom dlg

2010-03-19 Thread subramanyeswari
Hi, Thanks for your reply. This is my piece of code 1 NOT Installed Installed 1 Installed AND NOT REINSTALL I compiled files successfully and msi is als

Re: [WiX-users] how to use custom dlg

2010-03-19 Thread Rob Hamflett
How are you uninstalling it. If you're doing it from Add/Remove Programs then that mechanism uses a basic UI, and not the original one from your installer. If you're running your MSI again and getting the normal dialogs but not your custom one, then it might be about how it's connected. I

Re: [WiX-users] how to use custom dlg

2010-03-19 Thread subramanyeswari
thanks for you reply. let me check. Regards, Subramanyeswari -- View this message in context: http://n2.nabble.com/how-to-use-custom-dlg-tp4761972p4762567.html Sent from the wix-users mailing list archive at Nabble.com. --

[WiX-users] (no subject)

2010-03-19 Thread Patrick Choiniere
Hi everyone, I've got a problem I need to solve. When I use the following line below in WIX the linker (lights) gives me an error message. Line: Error message: error LGHT0204 : ICE03: Invalid format string; Table: Registry, Column: Value, Key(s): reg328E9EEEC11F14FEA06055693FAF3FD

[WiX-users] error LGHT0204 : ICE03: Invalid format string when use "[" in value

2010-03-19 Thread Patrick Choiniere
Hi everyone, I've got a problem I need to solve. When I use the following line below in WIX the linker (lights) gives me an error message. Line: Error message: error LGHT0204 : ICE03: Invalid format string; Table: Registry, Column: Value, Key(s): reg328E9EEEC11F14FEA06055693FAF3FD

Re: [WiX-users] error LGHT0204 : ICE03: Invalid format string when use "[" in value

2010-03-19 Thread Ondrej Zarevucky
As stated in the documentation for Formatted Column Data Type ( http://msdn.microsoft.com/en-us/library/aa368609(VS.85).aspx ) you should replace "[" with "[\[]" "]" with "[\]]" Will I get the proposed $64,000? ;-) Ondrej Zarevu

Re: [WiX-users] Storing a Property

2010-03-19 Thread David J. D'Amico
Thanks. That did the trick here is the code I used: Under features: To check if the script should run on an uninstall I added "AND (NOT WIXUI_DATABASESERVER="")" to the custom action: CONFIGCHOICE=2 AND (NOT UPGRADINGPRODUCT

[WiX-users] Fwd: Escaping Square Brackets (was: No Subject)

2010-03-19 Thread Dave Brotherstone
On Mar 19, 2010 2:47pm, Patrick Choiniere wrote: > Hi everyone, > I discovered that if I remove the left square bracket "[" from the Value as > follows it will compile and link. Now for the $64,000 question, I need the > [ in there how do I do this? > Escape "[" and "]" inside square bracket

[WiX-users] UAC, InstallService, verify user account...

2010-03-19 Thread Stryder Crown
Getting all three to work together isn't...well, working. Hoping somebody might have a suggestion as to how this could work better... I've got a complete handle on the actual service installation and start up (and tear down) and can even have the user enter account information to run the service

[WiX-users] Strange WiX combobox behaviour when MSI run from standard VS 2005 bootstrapper

2010-03-19 Thread Oleksandr Y. Nechyporenko
Hi All, I have experienced strange problem with UI ComboBox element when MSI run by standard bootstrapper generated by Visual Studio 2005. ComboBox won't drop down in this case. But selected item still can be changed by Up / Down keys or by mouse scroll. I've found similar problem described here:

[WiX-users] Some ICE03 errors I'm wondering how to fix...

2010-03-19 Thread Curtis Jewell
Could I fix them by chaining two immediate "property change" actions together, and if so, how exactly would I go about doing that? Here are the lines in question: In the merge module: C:\tmp\fragments\Strawberry Perl.wxs(6264) : warning LGHT1076 : ICE03: String overflow (greater than length perm

Re: [WiX-users] UAC, InstallService, verify user account...

2010-03-19 Thread Stryder Crown
and as a follow up on this: Do all managed custom actions require elevation under Vista? I have one defined as And it does absolutely nada under vista with UAC turned on. On Fri, Mar 19, 2010 at 11:04 AM, Stryder Crown wrote: > Getting all three to work together isn't...well, working. Hopin

[WiX-users] Change the default startup directory for a service installed with wix

2010-03-19 Thread Dario Griffo
Hi folks! I can't find the way to change the default startup directory (C:\Windows\System32) for my developed service. How can I do that? -- Darío Griffo -- Download Intel® Parallel Studio Eval Try the new software tools

[WiX-users] Change the default startup directory for a service installed with wix - More info added

2010-03-19 Thread Dario Griffo
Here is the code that I'm using. The problem is that the service starts but in the service I try to read a class in Common.dll using reflection, and before doing that if I print the execution directory is C:\Windows\System32 but the .exe is in my desired directory C:\Program FIles\My Name\ModName\A

Re: [WiX-users] UAC, InstallService, verify user account...

2010-03-19 Thread Stryder Crown
Update: Action fails under Vista, succeeds under Windows 7... On Fri, Mar 19, 2010 at 12:40 PM, Stryder Crown wrote: > and as a follow up on this: > > Do all managed custom actions require elevation under Vista? I have one > defined as > BinaryKey="CustomActions.dll" >

Re: [WiX-users] ServiceControl and Component

2010-03-19 Thread Zachary Young
Hi Bob, Thank you very much. At first when I looked at the InstallExecuteSequence table, I thought I'd need to author my own custom actions based on the order of the Actions...,then, I just now realized the default view for this table in Orca is not sorted. Sorting by Sequence indeed shows: StopS

Re: [WiX-users] ServiceControl and Component

2010-03-19 Thread Castro, Edwin G. (Hillsboro)
One of the ServiceControl elements is redundant you can specify both Start and Stop attributes on the same element like this: Edwin G. Castro Software Developer - Staff Electronic Banking Services Fiserv Office: 503-746-0643 Fax: 503-617-0291 www.fiserv.com Please

Re: [WiX-users] ServiceControl and Component

2010-03-19 Thread Zachary Young
Hi Edwin, Thank you for pointing that out. I will surely do it that way in my code. Thanks again, Zach -- Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactivel

Re: [WiX-users] Change the default startup directory for a service installed with wix - More info added

2010-03-19 Thread Wilson, Phil
I don't believe services have a configurable working directory. There's nothing in the CreateService or ChangeServiceConfig(2) APIs to specify one. I think you'd probably have to configure it yourself somewhere (like a WiX registry value of [TARGETDIR]) and use SetCurrentDirectory or equivalent.

Re: [WiX-users] UAC, InstallService, verify user account...

2010-03-19 Thread Stryder Crown
AD I think I've isolated it down to a "Failed to load assembly Microsoft.Deployment.WindowsInstaller" error in the MSI log. This happens on windows Vista (Windows Installer 4.5) and XP. Does anyone have any suggestions? I feel this may be the crux of my troubles... On Fri, Mar 19, 2010 at 2

[WiX-users] TextStyle

2010-03-19 Thread Szentpali Janos
Hello, can someone tell me a way to change font styles on WixUI_FeatureTree dialogs other that re-defining the whole dialog set? -- Szentpáli János -- Download Intel® Parallel Studio Eval Try the new software tools for y

Re: [WiX-users] How do I: Generate a Complete Installer usingCommand-Line Tools

2010-03-19 Thread Lisa Gracias
@Brian: I'm using the same set of components in 3 different products and I need a refcount to be maintained. On Mon, Mar 15, 2010 at 12:17 PM, Brian Rogers wrote: > @Lisa, any particular reason you are creating AND consuming your merge > module? > http://blogs.msdn.com/windows_installer_team/arch