Re: [WiX-users] Component Rules

2013-09-06 Thread Blair Murri
I'm not sure how you would run that CA before InstallValidate, since it might need to be elevated in order to change the filesystem metadata, and deferred actions cannot be run before InstallValidate. > From: john.ludlow...@gmail.com > Date: Thu, 29 Aug 2013 22:09:11 +0100 > To: wix-users@lists

Re: [WiX-users] How to stop web app pool (w3wp.exe) to satisfy Restart Manager?

2013-09-06 Thread Phil Wilson
This seems to be the way, and I assume you'd need to run it as a custom action. There may be APIs underneath that you can call to shut down the pool, I don't know. http://technet.microsoft.com/en-us/library/cc772200(v=ws.10).aspx Phil Wilson On Thu, Sep 5, 2013 at 4:08 AM, Hugh Williams wrote:

Re: [WiX-users] problem with conditional component

2013-09-06 Thread Rob Mensching
Or you could name the Property and Directory Id's the same and get rid of the second custom action. Definitely a more robust solution. On Tue, Sep 3, 2013 at 2:38 PM, Hoover, Jacob wrote: > You need a separate property for the search, and a CA to assign a value to > the VS12_ROOT_FOLDER if it ex

Re: [WiX-users] Service Uninstall not Removing Service

2013-09-06 Thread Greg Edwards
I will look into this and see what I can come up with. Thank you folks. -Original Message- From: John Cooper [mailto:jocoo...@jackhenry.com] Sent: Friday, September 06, 2013 7:27 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Service Uninstall not Re

Re: [WiX-users] Bootstrapper step conditional execution

2013-09-06 Thread Rob Mensching
Burn can handle that very easily. On Fri, Sep 6, 2013 at 5:41 AM, Tunney, Stephen wrote: > Hello everyone, > > I think it has been quite a few years since I've posted a question to this > forum. I have moved to a new company and I am getting them out of > InstallShield hell :) > > My boss has c

Re: [WiX-users] problem with conditional component

2013-09-06 Thread fahnd
Okay, I was missing a conditional invocation of the custom action to set the variable and the variable must be enclosed in [ ] in the setting custom action. This final code works: VS12_ROOT_FOLDER_EXISTS -- View this message in context: http://window

Re: [WiX-users] Service Uninstall not Removing Service

2013-09-06 Thread Swaroop Kare
Hi Greg, I have used this wix element and currently have no issues. I had something similar problem when doing the development that one of the installations did not uninstall services correctly and the later uninstalls did not work correctly. Probably you could try your installation in

Re: [WiX-users] Service Uninstall not Removing Service

2013-09-06 Thread Phil Wilson
As Edwin says, you didn't get any responses because it looks ok. So: 1. Just as a sanity check, make sure the service hasn't been marked Disabled. You mention it's stopped, but I just want to distinguish between "process not running" and its state in the services view. 2. Another sanity check, us

Re: [WiX-users] [Wix]: Conditional installation for Windows Server 2008/Windows Server 2012

2013-09-06 Thread Phill Hogland
The original post indicated "I have created MSI/EXE using Wix ". If the '/EXE' implies a Bundle was created, and 'Condition' is used in the Bundle then also take note that Burn built-in VersionNT and VersionNT64 variables have a different format than the related MSI variables. http://wixtool

Re: [WiX-users] How to stop web app pool (w3wp.exe) to satisfy Restart Manager?

2013-09-06 Thread Hugh Williams
Brilliant, Phil, thanks. I'll give it a go! -Original Message- From: Phil Wilson [mailto:phildgwil...@gmail.com] Sent: Friday, September 06, 2013 1:16 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] How to stop web app pool (w3wp.exe) to satisfy Resta

Re: [WiX-users] Service Uninstall not Removing Service

2013-09-06 Thread Edwin Castro
I've had problems in the past with a service not starting as expected because of missing dependencies but never a problem uninstalling the service. I don't see anything obviously wrong here. I checked the ServiceInstall and ServiceControl documentation to double check syntax and everything looked

Re: [WiX-users] Service Uninstall not Removing Service

2013-09-06 Thread Phill Hogland
I am relatively new to Wix and have not used the Service Control functionality yet, but I have over the years created services and installed them with setups created by another non-wix setup. So from that perspective, given your statement "but does not remove the service from the Services list",

Re: [WiX-users] Service Uninstall not Removing Service

2013-09-06 Thread John Cooper
Assuming this is the source of the problem, the Registry element provides the necessary functionality to remove a registry entry on uninstall (and a bunch of other capabilities). -- John Merryweather Cooper Build & Install Engineer -- ESA Jack Henry & Associates, Inc.(r) Shawnee Mission, KS 662

Re: [WiX-users] Service Uninstall not Removing Service

2013-09-06 Thread Greg Edwards
I didn't receive any updates from the group on this. Are there issues with uninstalling a service? I see a number of postings on the web regarding this, but no real resolutions. One again, the uninstaller stops the service, removes the program from the installed programs list, but does not rem

[WiX-users] Bootstrapper step conditional execution

2013-09-06 Thread Tunney, Stephen
Hello everyone, I think it has been quite a few years since I've posted a question to this forum. I have moved to a new company and I am getting them out of InstallShield hell :) My boss has come to me with a unique requirement for our installer. We would like to wrap a "demo" mode into our

Re: [WiX-users] Add text to final window in burn bootstrapper/installer

2013-09-06 Thread Bruce Cran
On 30/08/2013 14:46, Steven Ogilvie wrote: > No sorry > > I am not using 3.8 I am using 3.7 with the Extended BA from Neil Steven, I can't commit your code due to copyright issues, so would you be willing to sign the WiX copyright assignment agreement and upload the code to wix.codeplex.com you

Re: [WiX-users] Shortcut not being deleted

2013-09-06 Thread Natalie Carr
Thank you for all your help. Don't know how I missed it but the reason was that the folder I created in the start menu is using a property and of course on uninstall the property was empty so it did not know where to delete from. Silly mistake that I missed. -Original Message- From: Phil

Re: [WiX-users] Major Upgrade Schedule Not Working?

2013-09-06 Thread Andrew Meyer
Thank you for your help, Rob. That was exactly what I needed. For anyone else who comes across this, make sure you're doing a Minor upgrade instead of a Major upgrade. Switching to Minor upgrades on the MSI's made everything work as it should. -Original Message- From: Rob Mensching [mail

Re: [WiX-users] Deleting Config File based on CheckBox

2013-09-06 Thread Gnozo
Anyone? I really need your help. I tried nealy any tutorial/suggestion i found in the internet but nothing works. -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Deleting-Config-File-based-on-CheckBox-tp7588783p7588800.html Sent from the wix-users