Re: [WiX-users] EXE custom action cannot run because DLLs are removed

2013-06-11 Thread Sharon Pierson
Try moving it sooner. You could run ProDriverRemove after InstallInitialize. Running it before RemoveFiles means it is likely scheduled after RemoveRegistryValues which might be the real problem. Look at the InstallExecuteSequence table using Orca to help with the ordering. Also, you might

[WiX-users] Question about code page 1252

2013-06-04 Thread Sharon Pierson
I am trying to display a string in the welcome page that contains something like Company(c) My Product Name(tm) In the localization file, this is written as: Company© My Product Name™ Using Codepage=1252 (or Windows-1252) allows me to display the copyright symbol, but the trademark symbol cause

[WiX-users] Displaying the TM symbol using code page 1252

2013-06-03 Thread Sharon Pierson
I am trying to display a string that contains something like Company(c) My Product Name(tm) In the localization file, this is written as: Company© My Product Name™ Using Codepage=1252 (or Windows-1252) allows me to display the copyright symbol, but the trademark symbol causes Light to throw the

Re: [WiX-users] how to read a value from an xml app config file using WIX 3.6

2013-05-17 Thread Sharon Pierson
WIX 3.6 Which custom action do I use to read the value from the XML app config file? Marty Offe Sr. Software Developer Harland Financial Solutions Portland, OR 503-274-7280 x2376 www.harlandfinancialsolutions.com -Original Message----- From: Sharon Pierson [mailto:sharon.pier...@netiq.com] Se

Re: [WiX-users] how to read a value from an xml app config file using WIX 3.6

2013-05-17 Thread Sharon Pierson
If this is a major upgrade, you can add another custom action that reads the value from this file and sets a property in the installer that your dialog can use for displaying to the user. The new custom action would have a condition that makes it run only during upgrade. -Original Message

[WiX-users] When creating a patch the custom action binary and referenced custom actions are not included

2013-05-15 Thread Sharon Pierson
I am trying to create a patch that includes the custom action dll. The patch includes a new custom action that is specific to the patch. The installation files are included in the patch as expected. The binary, the added custom actions and the added property are missing. The patch source loo