[WiX-users] Configure contact, help link, support link of the package

2011-11-15 Thread Fangbai Lee
Hi, Folks I am a new guy on wix and now encounter an issue to configure the contact information, help link and support link for my package. I have searched on the Internet and found a guide at http://wix.tramontana.co.hu/tutorial/com-expression-syntax-miscellanea/add-or-remove-programs-entries :

Re: [WiX-users] util:RemoveFolderEx with condition?

2011-11-15 Thread Hoover, Jacob
One could always use a CustomAction invoking C# code which does similar to RemoveFolderEx (though I would suggest logging an enhancement request for RemoveFolderEx to support a child conditions). Ex: const string REMOVEFILES_VIEW = @"SELECT `FileKey`, `Component_`, `FileName`, `DirProperty

Re: [WiX-users] util:RemoveFolderEx with condition?

2011-11-15 Thread Blair
The only clean ways I am coming up with involve various schemes to force the component containing that RemoveFolderEx element to remain "installed" (and presumably orphaned) when the product containing it is removed. Does anyone else want to weigh in with ideas on that theme? Blair -Original

Re: [WiX-users] Enable/disable "Next" button

2011-11-15 Thread Blair
element? -Original Message- From: AxiomaticImpact [mailto:ke...@legendary-immersion.com] Sent: Tuesday, November 15, 2011 2:11 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Enable/disable "Next" button -- View this message in context: http://windows-installer-xml-wix-too

Re: [WiX-users] Getting error on writing INI section using addline

2011-11-15 Thread Blair
You will notice if you follow the WiX documentation that the IniFile element writes rows into the IniFile table. If you check the MSDN documentation you will find that the RemoveIniValuesAction removes data from the ini files when the associated components are removed. Thus, you need to have the pr

[WiX-users] Getting error on writing INI section using addline

2011-11-15 Thread justin hull
I am posting this as a different topic for I got the answers I needed from the other post regarding basic msp stuff. I've narrowed down the specific problem I am having with my upgrade. The project (Attached) has a section that writes UI data (from a custom window) to an INI file.

[WiX-users] Enable/disable "Next" button

2011-11-15 Thread AxiomaticImpact
-- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Enable-disable-Next-button-tp6998152p6998152.html Sent from the wix-users mailing list archive at Nabble.com. -- RSA(R) Confe

Re: [WiX-users] upgrade install errors

2011-11-15 Thread Blair
Case matters in ALL properties. The only place in conditions where case does not matter are the keywords (e.g. NOT/AND/OR can be any case). The last number is ignored when used in the Upgrade table (where the comparison is made with the ProductVersion value), but that table is completely ignored w

Re: [WiX-users] upgrade install errors

2011-11-15 Thread Justin Hull
Perhaps a final question. Does Upper Case lower case matter when using internal properties. For example: Installed vs INSTALLED UILevel vs UILEVEL I ask because a condition I set up to get around an INI write I wrote as UILEVEL > 3 and it still tried to execute the component on a /passive upgr

Re: [WiX-users] Best strategy for optional file removal on uninstall

2011-11-15 Thread Trent255
Thanks, inserting rows to the RemoveFile table instead of removing when uninstalling works fine -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Best-strategy-for-optional-file-removal-on-uninstall-tp6960503p6997682.html Sent from the wix-users maili

Re: [WiX-users] intermittent WriteIIS7ConfigChanges failure on read webDir webkey

2011-11-15 Thread Zhisheng Huang
  Here is the WebSite element defined. There is no IP attribute specified explicitly. This setup code works fine with WIX30. This problem shows up only after we change to use WIX35 to compile the setup.               - Original Message - From: John Cooper To: Zhisheng Huang ; Gener

[WiX-users] util:RemoveFolderEx with condition?

2011-11-15 Thread Thomas . Deboben
Hi, I'm just working on a task where I have to cleanup a folder where the application will create files and folders during runtime. There for I've added a RemoveFolderEx element. This works fine so far, but for one folder the user should be able to set in a dialog if this folder should be dele

Re: [WiX-users] intermittent WriteIIS7ConfigChanges failure on read webDir webkey

2011-11-15 Thread John Cooper
You must have a WebSite element with an Id of "DefaultWebSite" somewhere with a child WebAddress element. What is in that authoring? I get errors like this when the IP attribute is specified but is blank or whitespace. -- John Merryweather Cooper Jack Henry & Associates, Inc. Build & Install E

[WiX-users] Bootstraping .net framework 2.0 with wix 3.5 and VS 2010 generates an empty setup file

2011-11-15 Thread Dario Griffo
Hi guys, I'm trying to create a simple installer to test the bootstrap process. I'm using VS 2010, I've already copied the .net fwk 2.0 folder to the package directory C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bootstrapper\Packages\DotNetFX I'm not having any errors in the building proces

Re: [WiX-users] upgrade install errors

2011-11-15 Thread Peter Shirtcliffe
UILevel http://msdn.microsoft.com/en-us/library/aa372096%28v=VS.85%29.aspx Don't forget that in passive mode, the InstallUISequence doesn't run. If there's anything in there setting the properties, it may need repeating in or moving to the execute sequence. Or set a default when the property is bl

Re: [WiX-users] upgrade install errors

2011-11-15 Thread Justin Hull
I believe I discovered the issue. In the project I have a section that writes to an INI file details gathered in a normal install (see below). When I perform a full install or on upgrade I select a modify action, the upgrade works fine. However, when I run the msiexec in /passive, I get this