Re: [WiX-users] services stops at logoff

2010-07-05 Thread Sanjay Rao
Explicitally I did not marked the service as interactive. I do not have idea, what is default value of Interacive in this element. Type='ownProcess' makes any difference ? Thanks for your reply. Blair wrote: > Do the services happen to be marked Interactive? > > -Original Message- > Fro

Re: [WiX-users] services stops at logoff

2010-07-05 Thread Blair
Do the services happen to be marked Interactive? -Original Message- From: Sanjay Rao [mailto:s...@noida.interrasystems.com] Sent: Monday, July 05, 2010 10:18 PM To: General discussion for Windows Installer XML toolset. Subject: [WiX-users] services stops at logoff Hi All, I have a insta

[WiX-users] services stops at logoff

2010-07-05 Thread Sanjay Rao
Hi All, I have a installer which installs 3 services(auto-start). services stops when user logoff. Can I install services in such a way that services won;t stop at logout. Regards, Sanjay Rao -- This SF.net email is

Re: [WiX-users] webapppool to my virtual directory

2010-07-05 Thread MYFLEX
Can anyone help me the above problem please? -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/webapppool-to-my-virtual-directory-tp5242027p5258815.html Sent from the wix-users mailing list archive at Nabble.com. -

Re: [WiX-users] How to copy a file to a variable location?

2010-07-05 Thread Blair
Create an immediate custom action that calls GetPrintProcessorDirectory() and sets the property PrintProcessorDirectory with that location (appending it with a "\" character if it doesn't already end with one). Schedule that custom action in the InstallExecuteSequence table someplace before CostIni

Re: [WiX-users] [USEINTEGRATEDSECURITY] EnterpriseSMS Wix Installation

2010-07-05 Thread Blair
You set USEINTEGRATEDSECURITY using this control: When using a checkbox to set a property to a value, the checkbox will be set when the value is the value indicated, and the box will set the property to that value when the dialog is closed/a new dialog is opened. If the checkbox is not select

Re: [WiX-users] Problem with "Close App" condition

2010-07-05 Thread Ivo Beltchev
I think I know what is going on. Lets say I have 2 versions 1.0 and 2.0. The first one is installed and I'm upgrading to the second. Here's what I think happens: - installer 2.0 starts up - installer 2.0 checks the condition for CloseMyApp. !MyAppFeature is 2, &MyAppFeature is 3. Nothing happens

Re: [WiX-users] Problem with "Close App" condition

2010-07-05 Thread Ivo Beltchev
OK, so now my condition is "(!MyAppFeature=3) AND (&MyAppFeature<>3) AND (&MyAppFeature<>-1)". It works fine during install, uninstall, change or repair. But it doesn't seem to work during an upgrade (it's a major upgrade). I changed it to: (!MyAppFeature=3) AND ((&MyAppFeature=2) OR UPGRADINGP

[WiX-users] How to copy a file to a variable location?

2010-07-05 Thread David P. Romig, Sr.
I'm trying to install a print processor using WiX and a C# custom action. My custom action invokes the Win32 AddPrintProcessor() that expects the print processor DLL to already be copied to the proper folder. But different platforms store print processors in different folders. I can get the loca

Re: [WiX-users] [USEINTEGRATEDSECURITY] EnterpriseSMS Wix Installation

2010-07-05 Thread Kagiso Seboni
My Gosh..@ I've tried various sequencing permutations and changing the timing of Custom Action invocation but to no availeven the changes you'd recommended only reverse the situation whereby when USEINTEGRATEDSECURITY=1 the custom action begins the console applications but fails whenever US

Re: [WiX-users] Showing Message after running Managed CA

2010-07-05 Thread James Green
Billiant, thanks Peter, all solved. -Original Message- From: wix-users-boun...@lists.sourceforge.net [mailto:wix-users-boun...@lists.sourceforge.net] On Behalf Of Peter Shirtcliffe Sent: 05 July 2010 14:09 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] S

Re: [WiX-users] Altering Application Flow

2010-07-05 Thread Blair
Yes. You indicate which dialog is next (based on your conditions). -Original Message- From: Jon Hardcastle [mailto:jd_hardcas...@yahoo.com] Sent: Monday, July 05, 2010 4:42 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Altering Application Flow     Guys,     Is it possible

Re: [WiX-users] Altering Application Flow

2010-07-05 Thread Blair
Yes. You indicate which dialog is next based on those conditions. In each of those two dialogs, use similar conditions for the back button to get the correct dialog when going backwards. -Original Message- From: Jon Hardcastle [mailto:jd_hardcas...@yahoo.com] Sent: Monday, July 05, 2010

Re: [WiX-users] Problems launching an application on finish

2010-07-05 Thread Blair
You can't run a deferred action from a Publish. If you use cmd.exe (or QAQuietExec) you may be able to launch the executable in such a way as to let UAC prompt you for elevation. The failure is because launches in such a way as to not allow UAC to be invoked, and the application's elevation manife

Re: [WiX-users] Inherit permissions on a folder in WiX 3

2010-07-05 Thread Blair
You will need a modified version of (a subset of) WixUtilExtension. -Original Message- From: Elfe Xu [mailto:elf...@microsoft.com] Sent: Sunday, July 04, 2010 11:17 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Inherit permissions on a folder in WiX 3 Then how to make

Re: [WiX-users] Showing Message after running Managed CA

2010-07-05 Thread Peter Shirtcliffe
See my reply in this thread. http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/UI-Edit-Bo x-not-updating-td5077648.html -Original Message- From: James Green [mailto:james.gr...@lalpac.com] Sent: 05 July 2010 13:46 To: 'General discussion for Windows Installer XML toolset.' S

[WiX-users] Showing Message after running Managed CA

2010-07-05 Thread James Green
Hi All, So far all is working OK with my installer. I have a single managed (C#) Custom Action that gets run to test a database connection. I have it writing out to a property like this: session["DB_CONNECTION_OK"] = "1"; I can see this getting updated in the log correctly. However, on the

[WiX-users] Altering Application Flow

2010-07-05 Thread Jon Hardcastle
    Guys,     Is it possible to change the flow of the installer based on check boxes?     i want to ask a settings question on dialog 1 and then either display/not display dialog 2 based on that check box?     I presume i need some kind of condition on the publish command that displays the ne

Re: [WiX-users] Problems launching an application on finish

2010-07-05 Thread Pally Sandher
Try adding the Impersonate attribute with value "no" to your CustomAction element. You may also want to change the Execute attribute to "commit" or "deferred". See -> http://wix.sourceforge.net/manual-wix3/wix_xsd_customaction.htm Palbinder Sandher Software Deployment & IT Administrator T: +44

[WiX-users] Problems launching an application on finish

2010-07-05 Thread Thomas Due
Hello, I have a rather simple installer which among other things registers and starts some windows services. As such, the installer requires admin privileges from the UAC on Vista and Win7. It runs beautifully on Windows XP, Windows Vista and Windows 7, so not problems with the installer.

Re: [WiX-users] How to run Managed Custom Action (Wix 3.0) in dotNet 4.0 only machine?

2010-07-05 Thread Elfe Xu
Is there any risk if we use set useLegacyV2RuntimeActivationPolicy=true? Is there any known compatibility issues we should avoid? Do our tester need to spend extra attention on some certain items because of this? Thanks, -Elfe -- View this message in context: http://windows-installer-xml-wix-to