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\100219.pdf

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 

[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

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

2014-12-12 Thread garymonk
I added the following statements to the bundle... Variable Name=InstallClient Type=numeric Value=0 / Variable Name=InstallServer Type=numeric Value=0 / and modified the button statements as follows... Button Name=ClientInstall X=160 Y=130 Width=-11 Height=17 TabStop=yes FontId=3

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.: Variable Name=InstallClient Type=numeric bal:Overridable=yes Value=1 / Variable Name=InstallServer

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' Variable Name=InstallClient Type=numeric Value=0 bal:overridable='yes' / Variable Name=InstallServer Type=numeric Value=0 bal:overridable='yes' / -- View this message in context:

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

2014-12-12 Thread garymonk
I changed the variables to... Variable Name=InstallClient Type=numeric bal:Overridable=yes Value=1 / Variable Name=InstallServer Type=numeric bal:Overridable=yes Value=0 / and they are still disabled. Is this a bug? Thanks, Gary -- View this message in context:

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

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. Bundle Name=Guru Teach Installation Version=6.0.4.0 Manufacturer=Guru Dental UpgradeCode=ef8d3106-2b45-4ff2-b95b-3d24b4ef5f2f BootstrapperApplicationRef Id=WixStandardBootstrapperApplication.HyperlinkLicense

[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 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 https://wixextba.codeplex.com/SourceControl/latest#Examples/Bundle10.wxs which is supported in 3.8 and later by creating a

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] 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 phogl...@rimage.com wrote: You also need to get and install the vs2012SDK and the vs2013sdk (different from windows sdk) -- View this message in context:

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 joel.budr...@gmail.com wrote: Thanks Phil, I’ll give that a try… On Dec 12, 2014, at 12:15 PM, Phill Hogland phogl...@rimage.com wrote: You also

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] 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:

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] 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:

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: Button Name=INSTALLCLIENT X=170 Y=130 Width=-11 Height=17 TabStop=yes FontId=3 HideWhenDisabled=no HexStyle=0x09Guru Teach Client Only/Button Button Name=INSTALLSERVER X=170 Y=155 Width=-11 Height=17 TabStop=yes FontId=3

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:

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

2014-12-12 Thread Phill Hogland
This thread http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/How-to-suppress-the-StdBA-Bootstrapper-UI-td7597705.html#a7597753 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 [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:

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 jocoo...@jackhenry.com wrote: I believe you're running into a change in Windows Installer Service behavior

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

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] 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

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 phildgwil...@gmail.com To: General discussion about the WiX toolset. wix-users@lists.sourceforge.net Cc: Sent: Friday, December 12, 2014 11:30 AM Subject: Re: [WiX-users] Windows Updates - either pending or running causes our installs 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

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

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.