Re: [WiX-users] Combo Box (Wix)Customization

2014-07-02 Thread Namrata Kumari
public class CustomActions { [CustomAction] public static ActionResult CustomAction1(Session xiSession) {

[WiX-users] calling regasm.exe from Wix installer on Win 2012

2014-07-02 Thread Marek Mielcarek
Wix custom action executes regasm.exe with .NET dll as parameter. This works perfectly on Win7 and Win2008. On WinServer 2012 the same code does not register COM/interop server (the dll file is definitely present when the action executes). The installer runs in the same way on all systems (same

Re: [WiX-users] Plugin and plugin-description file

2014-07-02 Thread Nicolás Alvarez
2014-07-02 0:10 GMT-03:00 Nicolás Alvarez : > I have some plugin DLLs, and for each plugin, there's an XML file > describing its IPC interface and an .ini file describing the plugin > configuration and location (required for the app to load the plugin). > > Should I create three components? Or shou

Re: [WiX-users] Restart Resource via Elevated Silent (SCCM) Install

2014-07-02 Thread Phill Hogland
I have not tried to restart explorer, but in my msi I use the util:RestartResource element to signal the Restart Manager to handle the situation. The resulting behavior depends on how the application implements support, which I would assume would be implemented in the OS applications. http://blog

Re: [WiX-users] Restart Resource via Elevated Silent (SCCM) Install

2014-07-02 Thread AJ Ferrigno
Bump, just in case anyone has ever worked on a product that requires an explorer restart on install. How can an explorer restart happen via SCCM reliably? I'll ask another question along the same lines - does anyone know if we decide to package our MSI as an EXE - which presumably could elevate it

Re: [WiX-users] How to base MsiPackage InstallCondition on Substring of Variable

2014-07-02 Thread Robert Harrison
Thank you, John. The >< was the missing link. -Original Message- From: John Cooper [mailto:jocoo...@jackhenry.com] Sent: Wednesday, July 2, 2014 8:13 AM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] How to base MsiPackage InstallCondition on Substring of Variabl

Re: [WiX-users] Duplicate Symbol - MajorUpgrade and InstallExecuteSequence/RemoveExistingProducts

2014-07-02 Thread John Cooper
MajorUpgrade sets the RemovingExistingProducts for you. If you want a value different from the default, use MajorUpgrade@Schedule attribute. Removing the RemovingExistingProducts from the InstallExecuteSequence. -- John Merryweather Cooper Build & Install Engineer - ESA Jack Henry & Associates,

Re: [WiX-users] How to base MsiPackage InstallCondition on Substring of Variable

2014-07-02 Thread John Cooper
Your problem is that the schema indicates that Variable elements may have no children. Since you are conditioning InstallMsi2, the logical place for your condition is on the MsiPackage@InstallCondition. Also, in the context of an InstallCondition, you'll need to use entities: ~>< becomes ~><

Re: [WiX-users] How to base MsiPackage InstallCondition on Substring of Variable

2014-07-02 Thread Robert Harrison
I see the confusion now. I am trying to use a Variable element within Bundle element. //This doesn't work in this context. I need another way to set this variable equal to 1 if SelectedFeatures contains "FeatureA".

[WiX-users] Duplicate Symbol - MajorUpgrade and InstallExecuteSequence/RemoveExistingProducts

2014-07-02 Thread Dan McCoy
Hello I'm still new to Wix and I have a problem with a "duplicate symbol". I have a source file which contains both a MajorUpgrade section and a RemoveExistingProducts section: http://schemas.microsoft.com/wix/2006/wi";>

Re: [WiX-users] Consuming radio button action in wxi

2014-07-02 Thread Phill Hogland
First I have not done this specific task of using Radio Buttons, but I read information in the chm and on Niel's helpful web site https://wixextba.codeplex.com/documentation. Note that the wixextba was applicable to wix 3.7, and these features were ported into wix 3.8 with samples in the wix 3.8 s

Re: [WiX-users] Can't get Wix to build: XSLTLoader threw an exception

2014-07-02 Thread Phill Hogland
If using VS, there should be a 'Reference' to that extension. Typically the extension DLL is located in the wix toolset 'bin' folder (on my Win7 x64 that would be c:\program files (x86)\Wix Toolset v3.8\bin). Yours may vary but the environment variable '%WIX%bin' should be set to the path to the

Re: [WiX-users] bootstrapperApplicationData' attribute is not declared.

2014-07-02 Thread krupeshdhruv
Hi Phill, Thanks a lot for trying solution at your end. Yes I am providing full path of msi. I would like to add one thing here: If I create new project and add this code its working fine. If I add new project in existing project where I add reference of other project to create msi path, its not

Re: [WiX-users] bootstrapperApplicationData' attribute is not declared.

2014-07-02 Thread krupeshdhruv
Hi Phill, Thanks a lot for trying solution at your end. Yes I am providing full path of msi. I would like to add one thing here: If I create new project and add this code its working fine. If I add new project in existing project where I add reference of other project to create msi path, its not