Re: [WiX-users] Package download failed in Web Installer

2014-12-12 Thread Saravanan
Thanks Phill, Retry is working fine. I need some clarifications in Result.Suspend. I would like to pause the package download. I have added e.Result = Result.Suspend in CacheAcquireProgress callback. Result.Suspend will be set while select pause button from UI. But it won't pause the download. Pack

Re: [WiX-users] Setup bootstrapper fails if root certificate cannot be validated

2014-12-12 Thread Matthew J. Bobowski
Jacob, That worked great! Once I got around my own foolishness causing 0x80091007 - The has value is not correct. Obviously, when recompiling the setup.exe, also copy over MSI(s) as they are changed if your solution also includes those projects and they have a post-build event to signcode. Glad to

Re: [WiX-users] Setup bootstrapper fails if root certificate cannot be validated

2014-12-12 Thread Hoover, Jacob
Why not disable the cert check in your bundle? You can still sign your content. " SuppressSignatureVerification By default, a Bundle will use the hash of a package to verify its contents. If this attribute is explicitly set to "no" and the package is signed with an Authenticode signature the

[WiX-users] Setup bootstrapper fails if root certificate cannot be validated

2014-12-12 Thread Matthew J. Bobowski
I know this has been asked before, but is it possible for a WiX-generated bootstrapper to ignore issues when installing digitally signed files. Error 0x800b010a - An internal certificate chaining error has occurred. This error can happen if the root certificate is not known. Apparently there ar

Re: [WiX-users] Windows Updates - either pending or running causes our installs to fail

2014-12-12 Thread David Connet
- Original Message - > From: Phil Wilson > To: General discussion about the WiX toolset. > > Cc: > Sent: Friday, December 12, 2014 11:30 AM > Subject: Re: [WiX-users] Windows Updates - either pending or running causes > our installs to fail > >T here is a Windows Update Agent API. Th

Re: [WiX-users] WIX build failures

2014-12-12 Thread Joel Budreau
A ha! I had Visual Studio 2012 installed, but I was missing “Update 4” (same issue here - http://stackoverflow.com/questions/19278446/why-is-the-option-for-visual-studio-2012-windows-xp-v110-xp-missing-in-visua). The build is running now :) Joel > On Dec 12, 2014, at 12:25 PM, Joel Budreau wr

Re: [WiX-users] Windows Updates - either pending or running causes our installs to fail

2014-12-12 Thread Phil Wilson
There is a Windows Update Agent API. The IUpdateInstaller interface has an IsBusy property that seems to indicate that an update is in progress. This fragment of C++ may be a start. It seems to work in the sense that it tells me not busy :) but is otherwise untested. #include "stdafx.h" #include

Re: [WiX-users] Unhandled exception when launching MBA

2014-12-12 Thread Phill Hogland
I am not sure how to reproduce this issue now. I tried what I recalled running into some months back and did not hit the problem. -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Unhandled-exception-when-launching-MBA-tp7598331p7598565.html Sent fr

Re: [WiX-users] Long lasting Installation process. Why?

2014-12-12 Thread Phil Wilson
If so, this may be a fix, it mentions issues are caused by KB2918614 http://support.microsoft.com/kb/3000988 --- Phil Wilson On Fri, Dec 12, 2014 at 7:25 AM, John Cooper wrote: > I believe you're running into a change in Windows Installer Service behavior > caused by a Windows Secu

Re: [WiX-users] Unable to select radio buttons in Hyperlink Theme [P]

2014-12-12 Thread garymonk
Thank you Steve, and everyone else that contributed. I had the names backwards. I must have looked at that a thousand times. Thanks again!! -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Re-Unable-to-select-radio-buttons-in-Hyperlink-Theme-P-tp

Re: [WiX-users] Unable to select radio buttons in Hyperlink Theme

2014-12-12 Thread Phill Hogland
This thread has info setting up bafunctions.dll for a slightly different purpose. And this link

Re: [WiX-users] Unable to select radio buttons in Hyperlink Theme

2014-12-12 Thread Hoover, Jacob
Have you tried BS_AUTORADIOBUTTON instead of BS_RADIOBUTTON for your HexStyle? #define BS_RADIOBUTTON 0x0004L #define BS_AUTORADIOBUTTON 0x0009L -Original Message- From: garymonk [mailto:g...@gurudental.com] Sent: Friday, December 12, 2014 11:57 AM To: wix-users@lists.sou

Re: [WiX-users] Unable to select radio buttons in Hyperlink Theme [P]

2014-12-12 Thread Steven Ogilvie
Classification: Public Okay I have it working: Guru Teach Client Only Guru Teach Client and Server I think you had the names in the bundle as InstallServer and ServerInstall in the theme you had the names different STeve -Original Message- From: Steven Ogilvie [mailto:

Re: [WiX-users] Unable to select radio buttons in Hyperlink Theme

2014-12-12 Thread garymonk
I don't have anything like that coded. I'm new to WIX and I wasn't aware that I needed to do any coding. That's not a problem if someone could explain to me, or point me to some documentation, on how to do it. Thanks, Gary -- View this message in context: http://windows-installer-xml-wix-tools

Re: [WiX-users] ICE60 during install of ttf file to private folder

2014-12-12 Thread Nick Ramirez
What your WiX mark-up for the file look like? -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/ICE60-during-install-of-ttf-file-to-private-folder-tp7598542p7598557.html Sent from the wix-users mailing list archive at Nabble.com. ---

Re: [WiX-users] Custom Bootstrapper download and install .NET

2014-12-12 Thread Nick Ramirez
Are you handling the ResolveSource event? See: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/NET-4-pre-req-in-WixNetFxExtension-td7579058.html#a7579356 -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Custom-Bootstrapper-download-an

Re: [WiX-users] Custom Actions added with a Patch are ignored during uninstall

2014-12-12 Thread Nick Ramirez
Take a look at http://msdn.microsoft.com/en-us/library/aa370739%28v=vs.85%29.aspx where it says: /The Custom Action Patch Uninstall option is not available. There is no method for marking a custom action within a patch package to be run when the patch is uninstalled because the installer does not

Re: [WiX-users] WIX build failures

2014-12-12 Thread Joel Budreau
Nope :/ Still getting the same build failures, even after installing the VS2012 & VS2013 SDKs… > On Dec 12, 2014, at 12:19 PM, Joel Budreau wrote: > > Thanks Phil, I’ll give that a try… > >> On Dec 12, 2014, at 12:15 PM, Phill Hogland wrote: >> >> You also need to get and install the vs2012

Re: [WiX-users] WIX build failures

2014-12-12 Thread Joel Budreau
Thanks Phil, I’ll give that a try… > On Dec 12, 2014, at 12:15 PM, Phill Hogland wrote: > > You also need to get and install the vs2012SDK and the vs2013sdk (different > from windows sdk) > > > > -- > View this message in context: > http://windows-installer-xml-wix-toolset.687559.n2.nabble.c

Re: [WiX-users] WIX build failures

2014-12-12 Thread Phill Hogland
You also need to get and install the vs2012SDK and the vs2013sdk (different from windows sdk) -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/WIX-build-failures-tp7598551p7598552.html Sent from the wix-users mailing list archive at Nabble.com. ---

Re: [WiX-users] Unable to select radio buttons in Hyperlink Theme

2014-12-12 Thread Phill Hogland
I use a mba, and have not tried what you are doing for some time so I don't want to confuse the discussion in this thread. but I would use the approach detailed here which is supported in 3.8 and later by creating a BAFun

[WiX-users] WIX build failures

2014-12-12 Thread Joel Budreau
Hey guys, I’m not sure how to fix my build problems… What I’ve done so far: 1. Cloned the ‘wix3’ repo on my Win7x64 machine. 2. Followed the instructions on http://wixtoolset.org/documentation/manual/v3/wixdev/building_wix.html

Re: [WiX-users] Unable to select radio buttons in Hyperlink Theme

2014-12-12 Thread garymonk
I have the following code and they are still disabled. Thanks, Gary -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Unable-to-select-radio-buttons-in

Re: [WiX-users] XmlFile or XmlConfig in patch .msp ?

2014-12-12 Thread Nick Ramirez
What do your calls to torch.exe and pryo.exe look like? Do they include the -ext flag for the UtilExtension? -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/XmlFile-or-XmlConfig-in-patch-msp-tp7598517p7598549.html Sent from the wix-users mailing li

Re: [WiX-users] Unable to select radio buttons in Hyperlink Theme [P]

2014-12-12 Thread garymonk
I changed the variables to... and they are still disabled. Is this a bug? Thanks, Gary -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Re-Unable-to-select-radio-buttons-in-Hyperlink-Theme-P-tp7598544p7598547.html Sent from the wix-users mail

Re: [WiX-users] Unable to select radio buttons in Hyperlink Theme

2014-12-12 Thread Phill Hogland
anything the BA modifies needs to have bal:overridable='yes' -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Unable-to-select-radio-buttons-in-Hyperlink-Theme-tp7598537p7598546.html Sent from the wix-users mailing list archive at Nabble.com. --

Re: [WiX-users] Unable to select radio buttons in Hyperlink Theme [P]

2014-12-12 Thread Steven Ogilvie
Classification: Public Gary You set them to 0 which makes them unselected, change one or both values to 1 Also, you need to use overridable in your variable name in the bundle.wxs i.e.: Cheers, Steve -Original Message- From: garymonk [mailto:g...@gurudental.com] Sent: December-12-1

Re: [WiX-users] Unable to select radio buttons in Hyperlink Theme

2014-12-12 Thread garymonk
I added the following statements to the bundle... and modified the button statements as follows... Guru Teach Client Only Guru Teach Client and Server and the buttons are disabled when the dialog is displayed. How do I make the buttons enabled? Thanks, Gary -- View this message in conte

[WiX-users] ICE60 during install of ttf file to private folder

2014-12-12 Thread Tobias Erichsen
Hi everyone, during installation, I just want to copy some true-type fonts into an application local directory for its own internal use. Unfortunately I always get an ICE60 warning: XXX is not a Font, and its version is not a companion file reference... Could anyone tell me if I can get rid of

Re: [WiX-users] Long lasting Installation process. Why?

2014-12-12 Thread John Cooper
I believe you're running into a change in Windows Installer Service behavior caused by a Windows Security Update associated with KB2918614. -- John Merryweather Cooper Senior Software Engineer | Enterprise Service Applications | Continuing Development Jack Henry & Associates, Inc.® | Lenexa, KS 

Re: [WiX-users] Long lasting Installation process. Why?

2014-12-12 Thread Helmut Ziegler
Thanks Phil! I created a verbose log via "msiexec /i "setup.msi" /l*v "c:\temp\wix.log"" The log is quiet while the files are being accessed :-( Here is a line of ProcessMonitor that shows the read Access at 15:15 15:15:51,0348430 msiexec.exe 24212 ReadFile Y:\data\tomcat\webapps\data_dvd1\10021