Re: [WiX-users] Creating an ARP button for "Uninstall/Change" vs. "Uninstall" & "Change"

2015-07-15 Thread Phill Hogland
Using a Burn bundle set Bundle/@DisableModify="button" -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Creating-an-ARP-button-for-Uninstall-Change-vs-Uninstall-Change-tp7600885p7600886.html Sent from the wix-users mailing list archive at Nabble.com

[WiX-users] IIS 10 support

2015-07-15 Thread Matteo Canessa
Hi to everyone, My installer cannot create virtual folders on Windows 10 / IIS 10 whereas it works fine on any previous Windows / IIS version. I tried both Wix 3.9 and upcoming Wix 3.10 RC: anyone know if Wix (3.9 or 3.10, with IIS extension) supports Windows 10 / IIS 10? Many thanks, Matteo

[WiX-users] IIS 10 support

2015-07-15 Thread Matteo Canessa
Hi to everyone, My installer cannot create virtual folders on Windows 10 / IIS 10 whereas it works fine on any previous Windows / IIS version. I tried both Wix 3.9 and upcoming Wix 3.10 RC: anyone know if Wix (3.9 or 3.10, with IIS extension) support Windows 10 / IIS 10? Many thanks, Matteo

Re: [WiX-users] Creating an ARP button for "Uninstall/Change" vs. "Uninstall" & "Change"

2015-07-15 Thread Joel Budreau
What if ‘not’ using a Burn bundle? > On Jul 15, 2015, at 6:14 AM, Phill Hogland wrote: > > Using a Burn bundle set Bundle/@DisableModify="button" > > > > -- > View this message in context: > http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Creating-an-ARP-button-for-Uninstall-Ch

Re: [WiX-users] Creating an ARP button for "Uninstall/Change" vs. "Uninstall" & "Change"

2015-07-15 Thread Phill Hogland
I cannot speak to not using Burn, but in the last link that you originally posted, the last post indicates that the information was posted earlier in that thread, so I would guess that there is an MSI property that controls it. WiX is open source so it should be in the code for research. I also e

Re: [WiX-users] Creating an ARP button for "Uninstall/Change" vs. "Uninstall" & "Change"

2015-07-15 Thread Joel Budreau
Sure thing. I’ll probably dig through the burn source code. Thanks Phill. > On Jul 15, 2015, at 1:58 PM, Phill Hogland wrote: > > I cannot speak to not using Burn, but in the last link that you originally > posted, the last post indicates that the information was posted earlier in > that thread,

[WiX-users] Possible Bug: RegDelete does not work properly with REG_KEY_32BIT on a 64-bit system

2015-07-15 Thread Edwin Castro
I was trying to use RegDelete from the dutil library and I noticed my 32-bit key did not get deleted on a 64-bit system. I think the problem is the following RegOpen call hr = RegOpen(khRoot, wzSubKey, KEY_READ, &hkKey); if (E_FILENOTFOUND == hr) { ExitFunction1(hr = S_OK); } Since KEY_WOW64_

Re: [WiX-users] Possible Bug: RegDelete does not work properly with REG_KEY_32BIT on a 64-bit system

2015-07-15 Thread Nir Bar
You shuold OR it with the KEY_READ See Registry Key Security and Access Rights - Nir Bar Freelance Developer Mail: nir@panel-sw.com Web: www.panel-sw.com - C++ On Windows, Linux and Embedded Plat