Re: [WiX-users] Existing websites/virtualdirs/apppools

2011-03-28 Thread Paul Reynolds
Hi Maybe a helpful starting point would be to take a look at a series of posts I did recently on creating a WiX installer for web applications: http://blogs.planetsoftware.com.au/paul/archive/2011/02/20/creating-a-web-application-installer-with-wix-3.5-and-visual.aspx You might not be using VS2

[WiX-users] bind.AssemblyVersion

2011-02-23 Thread Paul Reynolds
Hi I'm struggling to get bind.AssemblyVersion working with my WIX 3.5 installer for an ASP .NET 4 Web Application. The documentation states I should be able to specify: !(bind.assemblyVersion.MyAssembly) Based on: bind.assemblyVersion.FileID So given my actual main web assembly is found via

[WiX-users] WebServiceExtension - Removed on uninstall on IIS 7.5

2011-02-20 Thread Paul Reynolds
Hi I'm finding that when I uninstall my application, the ISAPI and CGI Restrictions entry gets removed. Basically, it had 4 default entries (for .net 2 and 4)...with the .net 4 versions Not Allowed. After running the application install, the appropriate .net 4 version was marked Allow. However,

Re: [WiX-users] WIX 3.5 AppPool is not uninstalled on Windows 7

2011-02-19 Thread Paul Reynolds
uninstalled on Windows 7 Yep, store as a string. Windows Installer has a nasty habit of adding the "#" in front of integers. On Fri, Feb 18, 2011 at 4:38 PM, Paul Reynolds < preyno...@planetsoftware.com.au> wrote: > Hi Rob > > The install log indicates the following: >

Re: [WiX-users] WIX 3.5 AppPool is not uninstalled on Windows 7

2011-02-18 Thread Paul Reynolds
discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] WIX 3.5 AppPool is not uninstalled on Windows 7 Verbose log file usually tells all. First thing I would double check is the Name of the the WebAppPool data being passed to the custom action. On Thu, Feb 17, 2011 at 4:0

[WiX-users] WIX 3.5 AppPool is not uninstalled on Windows 7

2011-02-17 Thread Paul Reynolds
Hi On my dev box (win7 64bit), I'm finding that when I uninstall my web application, everything gets properly removed EXCEPT the AppPool. I found a related thread: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Problem-with-Application-pools-in-IIS-on-Windows-7-2008-td5438654.htm

Re: [WiX-users] WIX 3.5 - Listing Web Sites - Custom Action Script

2011-02-04 Thread Paul Reynolds
or says '' is undefined. '' is the UTF-8 BOM (Byte Order Mark). I expect your .js file is being saved as Unicode with Byte Order Mark, when it should be being saved as ANSI (or as Unicode but without BOM) -----Original Message- From: Paul Reynolds [mailto:preyno.

[WiX-users] WIX 3.5 - Listing Web Sites - Custom Action Script

2011-02-03 Thread Paul Reynolds
Hi I'm currently trying to create an installer for an ASP .NET 4 application. Using VS2010, WIX 3.5, .NET 4, on Win7 64bit. The current step I'm stuck on is that I want to display a list of web sites to the user to pick from in a dropdown list. From what I can google (there's a lot of noise!