[WiX-users] Changes in the source file(.wxs) to get a custom install

2012-06-22 Thread eddie burkowich
Hi, I have a radiobutton on a dialog box (i have created my own dialog box),(i m running as an admin) -All Admins My Current Work: Once i select this radiobutton(All Admins),click on next the system must check for the admin rights/logged in as administrators. If yes it should install for all

Re: [WiX-users] What issues can rise if lose components Guid every build?

2012-06-22 Thread Igor Lemsky
I read this articles of course. :) But I want to know - what is really bad consequences? On Fri, Jun 22, 2012 at 10:47 AM, Rob Mensching r...@robmensching.comwrote: Reference counting is basically hosed. This old blog post of mine explains the fundamentals:

[WiX-users] IisExtension: How to initialize IIS web app's Physical Path Credentials property in WiX (update)

2012-06-22 Thread marzena
Update: I have noticed that strange behavior described below is machine/configuration dependent: The issue appears on this configuration: Windows Server 2008 R2 Standard Version 6.1 (build 7600), IIS 7.5.7600.16385, MSI v5.0.7600.16385 And on this machine exactly the same MSI works pretty fine

Re: [WiX-users] Light.exe error: Value cannot be null

2012-06-22 Thread oji
Thanks, I've submitted BUG#3537167. Please let me know if you need anything else from me. Regards, -Javier -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Light-exe-error-Value-cannot-be-null-tp7578782p7579036.html Sent from the wix-users

[WiX-users] Use ValidatePath to validate a path different from WIXUI_INSTALLDIR

2012-06-22 Thread Luca Bottari
Hi, I am new to Wix. I would like to replace the InstallDirDlg with a new one that has 2 different path: the application root directory and the data directory. I succeded in the replacement but I don't know how to validate the second path in the BrowseDlg and in Next button. Please help.

[WiX-users] custom action with administrator privileges

2012-06-22 Thread nejiba
Hello everybody, I have just started using wix and i want to execute a command wreg to install some drivers after installation of the application. This works on an XP machine , but on windows 7 machine it requires administrator privileges to do it. this is my code: CustomAction Id=Pop1

Re: [WiX-users] custom action with administrator privileges

2012-06-22 Thread Peter Shirtcliffe
There is support for the difxapi in Wix itself. Look in the wix help for the difxapp schema. Using wix built-in custom actions will be much more reliable than running command line tools at install time. -Original Message- From: nejiba [mailto:nejiba.ta...@gmail.com] Sent: 22 June 2012

[WiX-users] Using a Bundle for Prerequisites

2012-06-22 Thread David Mannion
I'm trying to use the Wix Standard Bootstrapper Application to install two system prerequisites before my main application installation, which is already compiled into an Setup.exe. How can I prevent the bundle from being registered as a separate product. I am using the DisableModify and

[WiX-users] DIFxApp driver files in multiple directories

2012-06-22 Thread Frank Jenner
I'm attempting to use the WixDifxAppExtension to install a driver. In the only DIFxApp examples I have seen (of which there are very few), all of the files associated with the driver are located in the same directory, and all of those files are nested directly beneath the Component that contains

Re: [WiX-users] Using a Bundle for Prerequisites

2012-06-22 Thread Rob Mensching
As you've found, Burn is not intended to be used this way. The old setupexe/setupbld in WiX v3.5 basically does that. I'm sure there are other things that do this. Not a lot too it. Burn solves the problem of creating a unified installation experience across many installation packages. On Fri,

[WiX-users] Windows 8 framework 3.5

2012-06-22 Thread David L. Beckwith
I include a legacy msi in a burn package that requires framework 2.0. However, Windows 8 no longer includes 3.5, it is optional. http://blogs.technet.com/b/askcore/archive/2012/05/14/windows-8-and-net-framework-3-5.aspx Is there any way to trigger the Windows 8 shim without including the 2.0

Re: [WiX-users] Windows 8 framework 3.5

2012-06-22 Thread Rob Mensching
Nothing built-in. It's something we should take a look at in WiX v3.7. On Fri, Jun 22, 2012 at 1:49 PM, David L. Beckwith beckw...@interaccess.com wrote: I include a legacy msi in a burn package that requires framework 2.0. However, Windows 8 no longer includes 3.5, it is optional.

[WiX-users] Licensing - Change to Eclipse Public License?

2012-06-22 Thread Lam, Jonathan
Hey, I ran across this post (http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/WIX-Licensing-td5462816.html) regarding issues with the CPL (namely section 7), and how the Eclipse Public License was created in response to address those concerns. I didn't see any movement with

[WiX-users] Item in Feature Tree don't hidden, just disable for edit

2012-06-22 Thread Alexey Ivanov
I disable and hidden option will be installed if required via AllowAdvertise=no Need to dissable and hidden option Entire feature will be unavailable, or disable edit FeatureTree item without hidden him. How to simple do it?

[WiX-users] After InstallFiles on Change

2012-06-22 Thread rstoney99
Hello, I currently have a WiX project where I perform a custom action like this: CustomAction Id='DoSomething' Impersonate='no' Execute='deferred' Directory='INSTALLDIR_LC' ExeCommand='quot;[INSTALLDIR_LC]DoSomething.exequot;' Return='check' / InstallExecuteSequence Custom

Re: [WiX-users] Item in Feature Tree don't hidden, just disable for edit

2012-06-22 Thread Rob Mensching
Is that even possible? On Fri, Jun 22, 2012 at 3:05 PM, Alexey Ivanov alexey.iva...@gmail.comwrote: I disable and hidden option will be installed if required via AllowAdvertise=no Need to dissable and hidden option Entire feature will be unavailable, or disable edit FeatureTree item without

Re: [WiX-users] After InstallFiles on Change

2012-06-22 Thread Rob Mensching
A verbose log file will show you when your action is actually being executed. On Fri, Jun 22, 2012 at 2:53 PM, rstoney99 rwstoneb...@microstrain.comwrote: Hello, I currently have a WiX project where I perform a custom action like this: CustomAction Id='DoSomething' Impersonate='no'

Re: [WiX-users] Item in Feature Tree don't hidden, just disable for edit

2012-06-22 Thread Alexey Ivanov
Do not know 2012/6/23 Rob Mensching r...@robmensching.com: Is that even possible? On Fri, Jun 22, 2012 at 3:05 PM, Alexey Ivanov alexey.iva...@gmail.comwrote: I disable and hidden option will be installed if required via AllowAdvertise=no Need to dissable and hidden option Entire feature

Re: [WiX-users] Item in Feature Tree don't hidden, just disable for edit

2012-06-22 Thread Frank Jenner
Try setting Feature/@Absent=disallow. I think that will do what you're looking for. ___ Frank Jenner On Fri, Jun 22, 2012 at 6:49 PM, Alexey Ivanov alexey.iva...@gmail.comwrote: Do not know 2012/6/23 Rob Mensching r...@robmensching.com: Is that even possible? On Fri, Jun 22,

Re: [WiX-users] Custom Action - delete file at pre install - need improvement suggestion

2012-06-22 Thread Lazy Jack
hmmm i didnt realized it... thats true rob... i just realized it... can you suggest me to take care of it... Also i tried out your suggestion and it is working fine. -- View this message in context: