[WiX-users] Error2819

2012-01-04 Thread Rohini S
The Code which i used to add a new dialog in the setup. Product.wxs: ?xml version=1.0 encoding=UTF-8? Wix xmlns=http://schemas.microsoft.com/wix/2006/wi; Product Id=996b7490-325e-4890-b412-2119f36dd9dc Name=Install Language=1033 Version=1.0.0.0 Manufacturer=Install

[WiX-users] Error Opening Installation Log File from Programs and Features Window Vista

2012-01-04 Thread Bourne, Kevin
I created an MSI with WIX. When I go to uninstall it from Programs and Features in Vista I get a message saying Error opening installation log file. Verify that the specified log file location exists and is writable If I run the MSI directly I can uninstall the application. It is a Web

Re: [WiX-users] Error Opening Installation Log File from Programs and Features Window Vista

2012-01-04 Thread Christopher Painter
This is a known bug in Windows Installer. ( See MS KB2564571 ) I've personally seen it on Windows 7 but I haven't seen it on Vista.I personally no longer set the MsiLogging property since the functionality can't be trusted to actually work. The KB has a possible workaround if you are

[WiX-users] MSI not creating Virtual Directory

2012-01-04 Thread Bourne, Kevin
I have WIX creating a web site MSI. It puts everything in the correct directory in wwwroot but does not create it as an application (virtual directory) under the web site in IIS. The script is below. Main.wxs Product Id=* UpgradeCode=$(var.UPGRADECODE) Name=$(var.APPLICATIONNAME)

Re: [WiX-users] MSI not elevating properly

2012-01-04 Thread Scharp, Craig
Hi Wix users, I have a MSI with several dialogs including a choice of features. It is elevating privileges correctly (showing the UAC Popup) for my deferred actions, but I can't seem to get it to popup before the welcome dialog. I would also like the right-click 'run as administrator' option

Re: [WiX-users] MSI not creating Virtual Directory

2012-01-04 Thread Chad Petersen
Do you have a separate WebSite element in your code? I see the WebSite attribute on the WebVirtualDir element, but I'm not seeing the WebSite element. Maybe you didn't paste in into your e-mail. iis:WebSite Id=Default Description=[WEBSITE_NAME] iis:WebAddress Id=PortNum

Re: [WiX-users] Error2819

2012-01-04 Thread Wilson, Phil
That error message should have more detail if you produce a verbose log. The error is: 2819 Control [3] on dialog [2] needs a property linked to it. So the log should tell you the name of the control. Phil W -Original Message- From: Rohini S [mailto:roh...@lucidindia.com] Sent:

Re: [WiX-users] MSI not elevating properly

2012-01-04 Thread Bob Arnson
On 04-Jan-12 10:30, Scharp, Craig wrote: I have a MSI with several dialogs including a choice of features. It is elevating privileges correctly (showing the UAC Popup) for my deferred actions, but I can't seem to get it to popup before the welcome dialog. MSI doesn't support elevated UI or

Re: [WiX-users] Can't find source code for WixUI_InstallDir.wxs

2012-01-04 Thread Bob Arnson
On 03-Jan-12 12:28, Alan Goode wrote: Thanks for the reply Rob,, but could you be a little more specific? Does that mean that I need to connect to source control using TortoiseSVN and download the source from there? If you just want to look at the source (and not build it), use the sources

Re: [WiX-users] Help Uninstall

2012-01-04 Thread Bob Arnson
On 03-Jan-12 10:07, abgrallyann...@free.fr wrote: I'm working with Wix 3.6, Installation goes well, but I've an issue when I try to uninstall. My detection process allows users to install (if package is absent) or uninstall( if package is present). After the uninstallation, I launch my

Re: [WiX-users] Are Visual Studio Add Item Wizards supported with Votive

2012-01-04 Thread Bob Arnson
On 03-Jan-12 17:15, Robert Brunhuber wrote: more time in debugging (the loading of) my wizard, I'd like to know if these wizards are supported in votive, or if anyone succeeded in creating one. Votive uses MPF so inherits its support for wizards but doesn't add anything of its own. --