Re: [WiX-users] Overriding WIXUI_INSTALLDIR

2015-05-11 Thread Joseph L. Casale
> I am using a dialog indirectly. That dialog presents the results of a CA > that collects info > about the windows server that the user is installing on. Based on a choice > presented to > the user, it then publishes a value which the browse dialog uses > (INSTALLDIR). This provides > the sane

Re: [WiX-users] Overriding WIXUI_INSTALLDIR

2015-05-11 Thread Joseph L. Casale
Trying that again: > WIXUI_INSTALLDIR expects a property. Generally, it is statically set in the > Property Table. > Probably what you want is to update the value of the property at > [WIXUI_INSTALLDIR]. > If it runs before InstallDirDlg, you should be able to just update the value > of that p

Re: [WiX-users] Overriding WIXUI_INSTALLDIR

2015-05-11 Thread Joseph L. Casale
> WIXUI_INSTALLDIR expects a property. Generally, it is statically set in the > Property Table. > Probably what you want is to update the value of the property at > [WIXUI_INSTALLDIR]. > If it runs before InstallDirDlg, you should be able to just update the value > of that property > with the p

[WiX-users] Overriding WIXUI_INSTALLDIR

2015-05-11 Thread Joseph L. Casale
I have a dialog that runs before InstallDirDlg and uses a remembered property that is to construct the full installation path. A dialog that runs before InstallDirDlg -- One dashboard for servers and applications across Ph

Re: [WiX-users] Setting property values based on Visual Studio build configurations.

2015-04-15 Thread Joseph L. Casale
> Sure there is: > > > > > > > See Using Project References and Variables > > > for more preprocessor variables, and Preprocessor >

Re: [WiX-users] Setting property values based on Visual Studio build configurations.

2015-04-15 Thread Joseph L. Casale
> In your project file add property value: > > Condition="'$(Configuration)'=='Debug'">$(DefineConstants);MyConfig=MyDebugValue > Condition="'$(Configuration)'=='Release'">$(DefineConstants);MyConfig=MyReleaseValue

[WiX-users] Setting property values based on Visual Studio build configurations.

2015-04-14 Thread Joseph L. Casale
I want to build an msi under debug with a specific set of values (that make sense in my dev env) versus release (which make sense in a prod env). As they are all public, users can modify them via the command line however they all populate default values used in various dialogs and it would be ti

[WiX-users] Populating registry multiString MultiStringValue elements

2015-03-31 Thread Joseph L. Casale
I want to implement a listbox with optional entries to later insert into a registry multiString RegistryValue. What is the approach used here to perform this as the MultiStringValue's obviously will need to be dynamically added? Is the only way a CA that writes the values out? Thanks, jlc --

Re: [WiX-users] Custom actions in C# and disabling buttons

2015-03-12 Thread Joseph L. Casale
> How about having the custom action set a property if the condition is met, > and having the NewDialog event be conditioned on that property? Hi Nir, What I ended up doing was creating a validate button which invokes a custom action which sets a hidden property enabling the next button. This prov

[WiX-users] Custom actions in C# and disabling buttons

2015-03-09 Thread Joseph L. Casale
I have a dialogue that executes a custom action to validate user specified input however it returns ActionResult.Failure in the event the user supplied data is not accurate. That's rather abrupt and unneeded, however I can not seem to work around a condition to disable the next action. How does on

Re: [WiX-users] RegistrySearch on click

2015-03-06 Thread Joseph L. Casale
> I think you’d have to write your own VB script/DLL custom action to: > 1. Read the user’s input from a property > 2. Read the existing value from the registry - > http://stackoverflow.com/questions/34065/how-to-read-a-value-from-the-windows-registry > 3. Write a property (or don’t) if the user’s

Re: [WiX-users] RegistrySearch on click

2015-03-06 Thread Joseph L. Casale
Trying that again... I have been searching around for a while without luck on the approach used to initiate a RegistrySearch using a value entered in a text field when the user presses next in a dialog. The best I could come up with was publishing a DoAction event in the next button control. Howe

[WiX-users] RegistrySearch on click

2015-03-06 Thread Joseph L. Casale
I have been searching around for a while without luck on the approach used to initiate a RegistrySearch using a value entered in a text field when the user presses next in a dialog. The best I could come up with was publishing a DoAction

Re: [WiX-users] ServiceInstall/ServiceControl name attribute restrictions

2015-03-05 Thread Joseph L. Casale
> http://robmensching.com/blog/posts/2010/5/2/the-wix-toolsets-remember-property-pattern/ Much appreciated, this installer at a later must support multiple instances at which point then this will all fit together, no need for a static location as I assume we can compile an extension to enumerate t

Re: [WiX-users] ServiceInstall/ServiceControl name attribute restrictions

2015-03-05 Thread Joseph L. Casale
Trying that again... When I pass a variable reference such as "[FOO]_[BAR]" to the name attribute of both a ServiceInstall and ServiceControl element the package installs fine however when uninstalling the service is left running without being stopped and removed. When I pass a literal string, the

[WiX-users] ServiceInstall/ServiceControl name attribute restrictions

2015-03-05 Thread Joseph L. Casale
When I pass a variable reference to the name attribute of both a ServiceInstall and ServiceControl -- Dive into the World of Parallel Programming The Go Parallel Website, sponsored by Intel and developed in partnership with

Re: [WiX-users] Setting install directory to a user chosen value.

2015-03-04 Thread Joseph L. Casale
> The dialog that asks for MYID should be sequenced before the dialog that asks > for INSTALLFOLDER. > On the MYID dialog's "Next" button you should add the Publish element that > sets INSTALLFOLDER to [CompanyName]\[MYID]. > > Does that make sense? Yup, that was the missing bit. Much appreciated.

Re: [WiX-users] Setting install directory to a user chosen value.

2015-03-04 Thread Joseph L. Casale
> You have several options to do that: > 1. Author a SetProperty > > element that will append the string entered by the user > 2. Author a Publish > >

[WiX-users] Setting install directory to a user chosen value.

2015-02-28 Thread Joseph L. Casale
I have a dialogue that asks a user for a string value, how do I pre populate this as the final child directory in the install path? I present the user with an install location dialogue that defaults to c:\program files\company\xxx and I want xxx to be the same as the string chosen? Thanks! jlc -

[WiX-users] Registering the .exe

2013-03-11 Thread Joseph, Sijo
Hi All, I am able to register a .dll or .ocx to the registry. We need to do the same this for .exe. Please could you advise or provide me the sample code to do this. Please let me know if you require any more information. Thanks in advance. Thanks, Sijo Joseph

[WiX-users] Code to check the value while doing the intallation

2013-02-26 Thread Joseph, Sijo
Hi All, Please could you provide the sample code to do the validation to check that there is a value entered in the text box while doing the installations. Regards , Sijo Joseph -- Everyone hates slow websites. So do we

Re: [WiX-users] InstallUISequence

2013-02-21 Thread Joseph, Sijo
Thanks Steve, It worked... Thanks, Sijo Joseph -Original Message- From: Steven Ogilvie [mailto:steven.ogil...@titus.com] Sent: 20 February 2013 17:25 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] InstallUISequence If you're talking abou

Re: [WiX-users] InstallUISequence

2013-02-20 Thread Joseph, Sijo
that also will help. Thanks, Sijo Joseph -Original Message- From: Gabriel Ivanes [mailto:g...@fastmail.net] Sent: 20 February 2013 16:53 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] InstallUISequence Like a

[WiX-users] InstallUISequence

2013-02-20 Thread Joseph, Sijo
Hi All, Is there any property can be set in "InstallUISequence" to display a custom dialog while the msi is installing. I can see the parameters after and before like below Regards , Sijo Joseph -

Re: [WiX-users] Usage of Heat.exe to create the setup

2013-02-20 Thread Joseph, Sijo
uired. Thanks, Sijo Joseph -Original Message- From: David Watson [mailto:dwat...@sdl.com] Sent: 20 February 2013 11:51 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Usage of Heat.exe to create the setup Did you use the -svb6 switch when you ran heat?

Re: [WiX-users] Usage of Heat.exe to create the setup

2013-02-20 Thread Joseph, Sijo
Hi All, We are using the dll created in VB 6, getting the error "The TypeLib element is non-advertised and there required a parent file element", please could you all advise. Thanks, Sijo Joseph | IT Consultant, Aon Project | CGI Divyasree Technopolis, 124-125, Off HAL Old Ai

[WiX-users] Usage of Heat.exe to create the setup

2013-02-20 Thread Joseph, Sijo
Hi All, In our project we are having 200+ plus files (dlls,ocx) in different directories. I am planning to use heat.exe to get this script generated manually, is there any limitations or any particular thing needs to be taken care while doing this. Thanks in advance. Regards , Sijo Joseph

[WiX-users] Option to remove the "End-User License Agreement" in the Wix setup

2013-02-19 Thread Joseph, Sijo
Hi All, Please could you give an example to remove the "End-User License Agreement" in the Wix setup. If any existing link with sample will be useful. Please let me know if any more information is required. Thanks, S

[WiX-users] How to use the option WixUI_Mondo to get folder selection

2013-02-18 Thread Joseph, Sijo
Hi All, Please could you give an example to "How to use the option using WixUI_Mondo to get folder selection. I am able to do this by using "WixUI_InstallDir", but I have to use WixUI_Mondo as I have to use custom dialog. Than

[WiX-users] Mandatory or Pre-requisite for creating an MSI in wix

2013-02-18 Thread Joseph, Sijo
Hi All, I am new user to wix, please could you let us know the pre-requisites required to be added in the project while creating the MSI. Thanks, Sijo Joseph -- The Go Parallel Website, sponsored by Intel - in

Re: [WiX-users] Bundle Installer size issue

2013-01-30 Thread Harmon, Joseph
ll "? -Original Message- From: Harmon, Joseph [mailto:jhar...@illumina.com] Sent: Monday, January 28, 2013 12:03 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Bundle Installer size issue Rob, I can work on getting perf data, let me get back

Re: [WiX-users] Bundle Installer size issue

2013-01-28 Thread Harmon, Joseph
Rob, I can work on getting perf data, let me get back to you... Thanks for the ideas (digital signing & splash screen), I will look into those... In regards to my original question, is there no way to put some of the components into a separate dll? Thx -Joseph -Original Message-

[WiX-users] Bundle Installer size issue

2013-01-16 Thread Harmon, Joseph
to offload the burn engine or some of the components into a separate library project? Thanks, Joseph -- Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS, MVC, Windows 8 Apps, JavaScript and much more.

[WiX-users] WIX chain issue

2012-11-29 Thread Harmon, Joseph
in the add/remove programs menu, which is not the desired effect in this case. Does anyone know why this occurs, and how to fix it? Thanks, Joseph -- Keep yourself connected to Go Parallel: VERIFY Test and improve you

[WiX-users] vs 2010 integration

2012-07-10 Thread Garry, Joseph
I'm new to WiX and trying to determine if this tool will work for our purposes. We're using VS 2010. In working through the instructions for Creating a Simple Setup under Working in Visual Studio, it appears that when I build the setup after adding the reference nothing is added to the Product.wx

[WiX-users] (no subject)

2012-04-11 Thread Joseph Hoyal
Hello, I've been trying to get EmbeddedUI working but I'm not having any luck. I can't seem to find many examples so I'm not sure what I'm missing. >From my WXS: Below is a section from my logfile. Any direction or assistance would be greatly appreciated. MSI (c) (78:A4) [13:42:39:732]: EEU

Re: [WiX-users] Bundled Installer Not installing under ALLUSERS

2012-01-27 Thread DuBois, Joseph
eforge.net Subject: Re: [WiX-users] Bundled Installer Not installing under ALLUSERS On 26-Jan-12 15:02, DuBois, Joseph wrote: > Have a the to load the individual packages > under all users, but it isn't installing the Bundle itself under ALLUSERS. If your packages are all per-user t

[WiX-users] Bundled Installer Not installing under ALLUSERS

2012-01-26 Thread DuBois, Joseph
Hello all, Have a to load the individual packages under all users, but it isn't installing the Bundle itself under ALLUSERS. I can't seem to find a setting which allows me to set this. So another user comes along and only sees the individual packages, and uninstalls them leaving the rogue Bun

[WiX-users] failed to open metabase key: /LM

2010-08-11 Thread Joseph Vano
I am getting an installer error that does not happen consistently. I am using Wix 3.0.5419.0 and have a package that installs two IIS web application. From the log below it looks like it successfully created the app pool and added one of the sites ... but then starts failing and does not install

[WiX-users] How to NOT Delete Application Directory on Uninstall?

2010-05-07 Thread Joseph B. Kowalski
Hi all, My apologies if this is already answered somewhere, but I couldn't find an answer. My question is: How can I setup a Wix installer to NOT delete the application directory on uninstall (even when the directory was initially created by the Wix install)? Some background: Let's say we ha

[WiX-users] Uninstall UI for database settings

2010-03-26 Thread Peter Joseph Solomon
registry or to have the user enter the settings on the commandline. Does anyone know if there will be any development for uninstall UI's? Kind regards Peter --- Peter Joseph Solomon 082 535 1844 pe...@nextsteps.

Re: [WiX-users] How to select between SQL Authentication and Integrated Authentication during the install of the msi?

2010-02-23 Thread Peter Joseph Solomon
w if this is something which will actually be resolved? Kind regards --- Peter Joseph Solomon 082 535 1844 pe...@nextsteps.co.za On Tue, Feb 23, 2010 at 7:07 PM, pmdarrow wrote: > > Mike, I'm not sure if you read Peter's quest

Re: [WiX-users] How to select between SQL Authentication andIntegrated Authentication during the install of the msi?

2010-02-23 Thread Peter Joseph Solomon
ht="17" Width="130" X="95" Y="214" Property="DBAPASSWORD" >> TabSkip="no"> >>               > Action="disable">SQLSERVER_AUTHENTICATION="Windows" >>               > Action="enable">SQL

[WiX-users] How to select between SQL Authentication and Integrated Authentication during the install of the msi?

2010-02-23 Thread Peter Joseph Solomon
I have the following example which uses two components each with a condition to select which component to run.  One component uses a database linked to an SQL Authenticated User and the other to no user (Integrated Authentication). Command line options are passed, either USEINTEGRATEDSECURITY=1 or

Re: [WiX-users] Why WindowsFolder got reset?

2009-02-02 Thread Joseph Wu
I found the problem Following work msiexec /i WixOpadsSiteSetup.msi /l*v Mylog.txt Following not work msiexec /a WixOpadsSiteSetup.msi /l*v Mylog.txt Is /a a bad idea? Thanks Joseph -Original Message- From: Joseph Wu [mailto:joseph...@ds-iq.com] Sent: Monday, February 02, 2009 11

[WiX-users] Why WindowsFolder got reset?

2009-02-02 Thread Joseph Wu
Hi, I write a simple wxs file and the results is not quite right. I look into the log and find something strange. Why WindowsFolder got reset? I have another setup, WindowsFolder is the correct value. No idea who change it. Thanks Joseph MSI (c) (80:24) [09:54:21:914]: Note: target

Re: [WiX-users] How to change permission for existing Folder and/or file?

2009-01-28 Thread Joseph Wu
Thank you very much, Now it solve the User problem. But I got the following error. But I don't want to create folder. Because it is an existing folder. Does that mean FileSharePermission is not the solution for me? I need to use Custom Action to do it? Thanks Joseph Erro

Re: [WiX-users] How to change permission for existing Folder and/or file?

2009-01-28 Thread Joseph Wu
x27;s value, 'Service Accounts-DTF', is not a legal identifier. Identifiers may contain ASCII characters A-Z, a-z, digits, underscores (_), or periods (.). Every identifier must begin with either a letter or an underscore. How to solve this problem? Thanks Joseph -O

Re: [WiX-users] How to change permission for existing Folder and/or file?

2009-01-27 Thread Joseph Wu
After one day of research. It looks to me that CustomAction is only way I know to achieve it. Is this the right way to go? Thanks Joseph -Original Message- From: Joseph Wu [mailto:joseph...@ds-iq.com] Sent: Monday, January 26, 2009 4:16 PM To: wix-users@lists.sourceforge.net

[WiX-users] How to change permission for existing Folder and/or file?

2009-01-26 Thread Joseph Wu
Permission Element's parent must be CreateFolder or File. How to change the permission for existing Folder and/or file? Thanks Joseph -- This SF.net email is sponsored by: SourcForge Community SourceForge wan

[WiX-users] Persisent public properties, transforms and security

2008-05-20 Thread Joseph Valet
Hello, Here is a question regarding general understanding of MSI properties and their persistence across product life. >From what I understand, properties provided on the command line at >installation-time are not stored by Windows Installer for later use. For >example, if I do type: msiexec

[WiX-users] Difxapp driver installation does not return errors to Windows Installer

2008-05-09 Thread Joseph Valet
Hi All, I have a little question regarding difxapp. I am using the following code snipset for installing a driver: {{{ ... ... }}} The c_one component is then installed as part

[WiX-users] Pillules for all tastes at Canadian pharmacy.

2008-04-24 Thread George Joseph
If you are looking for hq cures, check this out. http://teahotspot.com George Joseph - This SF.net email is sponsored by the 2008 JavaOne(SM) Conference Don't miss this year's exciting event. There's sti

Re: [WiX-users] CustomAction in .msp MSI patch

2007-11-17 Thread Joseph Valet
I finally got it working. My mistake was that I was trying to include the definition of the custom action into the patch definition. One must in fact define his custom actions in the base packages and then torch/pyro will detect the differences and include the custom action into the patch if ne

[WiX-users] CustomAction in .msp MSI patch

2007-11-16 Thread Joseph Valet
Hi all, I would like to know it is is possible to embed a Custom Action (type 2) in a WiX 3.x Patch (.msp file). I base my work on the following example: * http://blogs.msdn.com/pmarcu/archive/2007/06/28/sample-patch.aspx I enthusiastically added my custom action to the existing fragment: {

[WiX-users] Wix 2.0 NGEN problem

2007-05-08 Thread Joseph Aquilino
I'm a newbie to WiX and am attempting to change a working WiX 2.0 (2.0.4221.0) wxs source file to NGEN some executables automatically upon installation and their removal upon de-installation. I found an article from Derek Cicerone (I think) titled "NGen support in WiX", dated June 26, 2006, depic

[WiX-users] Question about Element

2007-04-19 Thread Joseph M
If the registry updates during installation, will the registry element, pointing to the key that updates, update as well? -- View this message in context: http://www.nabble.com/Question-about-%3CRegistry%3E-Element-tf3608622.html#a10083013 Sent from the wix-users mailing list archive at Nabble.c

Re: [WiX-users] Problem with LaunchCondition

2007-02-27 Thread Joseph O'Sullivan
Thanks Rob looks like I got some reading to do. Joe -Original Message- From: Rob Mensching [mailto:[EMAIL PROTECTED] Sent: 27 February 2007 17:52 To: Joseph O'Sullivan; wix-users@lists.sourceforge.net Subject: RE: [WiX-users] Problem with LaunchCondition Check out:

[WiX-users] Problem with LaunchCondition

2007-02-27 Thread Joseph O'Sullivan
I am trying to make this piece of code work Now this works fine if I install, however, when I go to uninstall it won't let me unless I remove the registry key. I think this is down to the condition I am using. This is what I am trying to get to so it shows what I have done. Ins

[WiX-users] Custom Action to run only on uninstall...

2007-02-06 Thread Joseph O'Sullivan
What am I doing wrong today :-) What I am trying to do is run and exe file RemoveAll.exe at the end of the uninstall, I only want it to run on uninstall. Sample one has a custom action running on install and is working fine, Sample two is not working I am quite sure it is a mistake by me but I

[WiX-users] Help using PIDKEY + MaskedEdit + PIDTemplate

2007-01-25 Thread Joseph O'Sullivan
OK I have a this piece of code Customer&Account Number: Now for the Property I would like to be able to input A to Z both upper case and lower case, Numbers, and a "-" what are the masks and how do I out them in? Thanks Regards JOE O'SULLIVAN __

Re: [WiX-users] Help on uninstall

2007-01-24 Thread Joseph O'Sullivan
just press next without filling in the maskededit box and if the box is filled in then when they go back they can not change it. Any help would be much appreciated. Thanks From: Levi Wilson [mailto:[EMAIL PROTECTED] Sent: 24 January 2007 18:52 To: Joseph O'Sullivan Cc: wix-users@lists.source

[WiX-users] Help on uninstall

2007-01-24 Thread Joseph O'Sullivan
I have this piece of code in my MSI Sample A. Sample B. My thoughts are these the custom actions are to run on install, but not on uninstall. When I have these in the install it installs fine but just says there is an error when I uninstall. Both examples of the cod

[WiX-users] XmlFile element

2006-10-11 Thread Joseph Barkley
I need to parse an xml file that is being installed with my current project. I'd like to keep the code for the parsing inside of the component for the xml file, but it simply will not use the [#fileId] properly. It compiles and runs, but it errors out because it doesn't resolve [#fileId] during the

Re: [WiX-users] ODBCDataSource Errors?

2006-10-05 Thread Joseph Barkley
be found. That's not the file, but the name of the DSN I want to create. Anyone? Again, if there is an answer already out there a url would suffice... Thanks,JoeyOn 9/19/06, Joseph Barkley <[EMAIL PROTECTED]> wrote: All,I have searched high and low for information regarding the ODBCDataSourc

[WiX-users] Com Interop Versioning

2006-09-26 Thread Joseph Barkley
e to parse this information out for each build (currently). Is this what I will have to do, or does wix/msi provide some type of file version reference (similar to [#filekey] or [$componentkey])? Thanks,Joseph - Take Surveys.

[WiX-users] ODBCDataSource Errors?

2006-09-19 Thread Joseph Barkley
ile SMS-3000 History SQL exists and that you can access it. Any help would be appreciated. Can I get this information from the WiX source code or something. I'm willing to dig, I just don't know where to start with the shovel...Thanks,Joseph

Re: [WiX-users] Policy and Config files into the GAC?

2006-09-12 Thread Joseph Barkley
asp says that "[a]ll of the files in the assembly should be in a single component."   -- Mike Dimmick From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Joseph BarkleySent: 08 September 2006 20:35To: wix-usersSubject: [WiX-users] Policy and Config files into the GAC? I

[WiX-users] Policy and Config files into the GAC?

2006-09-08 Thread Joseph Barkley
t;valid" GAC files. Previously, I had added everything in our InstallScript code to the GAC by using gacutil with *.*If this is not correct, how do I handle the policy and config files that go with the assemblies? Where should these be placed on disk if they d

[WiX-users] ANSI Characters

2006-07-28 Thread Joseph
I'm having a lot of trouble getting an MSI installer to work with file names or folders containing characters like Á or ó. Whenever I attempt to run the .msi it says that ?_propos_du_bouton_d_ic?ne.htm was an invalid file name, but that's not what I even named the file. The file was called Á_propo

[WiX-users] Tallow Errors on New Build Machine

2006-07-05 Thread Joseph Barkley
All,I am trying to set up a new build system, which has VS.NET 2005. I pulled the 6/28/06 build of WiX (I think) and tried to run tallow to demonstrate the DllRegisterServer extraction (-s option) and it crashed tallow with tallow.exe : fatal error TLLW0001: Index was outside the bounds of the arr

[WiX-users] WiX Consultant Available?

2006-06-15 Thread Joseph Barkley
be able to work out remoting if you don't live in this area. My manager has asked me about this again and I'd really like to get someone good in here who can review my design before our remote team does the implementation. Thanks, Joseph Barkley Software Engineer S

[WiX-users] note

2006-06-05 Thread Joseph Cortez
Looking for a company with some good news? Here's one! A M S N is a high growth issue and should be purchased by stock traders and those that can afford to make quick money on these fast moving issues. This is your chance to get your hands on one of these fast moving stocks and take short term p