[WiX-users] How to calculate the signature value of a file component

2012-11-05 Thread tzleon
Hi, I need to write component(an exe file)'s signature value into register after program installed, but in processing of installation, I found I couldn't get the real file's content in CA. So what should I do to process this situation? -- View this message in context: http://windows-installer-

Re: [WiX-users] Password validation without CA

2012-11-05 Thread Michael Turner
Nirmalraj, I have implemented something similar, and I ran into the same problem that you did. In my implementation, I created additional custom dialogs to display messages if the "Password" and "Confirm Password" entries did not match or if either the user name or password was empty. Then I kee

Re: [WiX-users] C#: string s1 = session["TARGETDIR"]; Is Throwing an Exception...

2012-11-05 Thread Hoover, Jacob
You only need to assign a property containing the "values" you are looking for on deferred custom actions. Remove Unless you are intending on doing a deferred custom action in which case you need to add Execute="deferred" to: -Original Message- From: Tristen Fieldin

[WiX-users] C#: string s1 = session["TARGETDIR"]; Is Throwing an Exception...

2012-11-05 Thread Tristen Fielding
Hi, Currently using Wix 3.5. We are looking at rewriting our CA's in C#, so I've started to play with DTF and a few examples. However, I can't understand no matter what value I try with session[""] it throws an exception. In the logs I see a list of Property(s) like: Property(S): INSTALLLOCAT

Re: [WiX-users] stop bootstrapper creating ARP registry key...

2012-11-05 Thread Hoover, Jacob
Use the MsiPackage/@Visible='no' so that the MSI package isn't visible in ARP and then allow the bundle to do the uninstall/removal and repairs. -Original Message- From: Steven Ogilvie [mailto:steven.ogil...@titus.com] Sent: Monday, November 05, 2012 3:00 PM To: General discussion for Wi

Re: [WiX-users] stop bootstrapper creating ARP registry key...

2012-11-05 Thread Rob Mensching
Burn doesn't support that. Instead, you might consider the Bundle your ARP entry and not have any MSIs write the ARP entry. That way caching gets cleaned up. On Mon, Nov 5, 2012 at 11:54 AM, StevenOgilvie wrote: > Hi all, > > I am using the BootStrapper to install requisites that stay on the ma

Re: [WiX-users] stop bootstrapper creating ARP registry key...

2012-11-05 Thread Steven Ogilvie
That is fine BUT... IF you install running BootStrapper, then uninstall from your .MSI in ARP, if you run BootStrapper again it ask to repair/remove :( Steve -Original Message- From: Hoover, Jacob [mailto:jacob.hoo...@greenheck.com] Sent: November-05-12 3:50 PM To: General discussion f

Re: [WiX-users] stop bootstrapper creating ARP registry key...

2012-11-05 Thread Hoover, Jacob
The bootstrapper will add itself to ARP (no real way to get around this nor do I think it would be a good idea), but it will hide the install of your other prerequisite installs. If you want the prerequisites to stay after uninstall, then attributing them not to be removed will prevent those f

[WiX-users] stop bootstrapper creating ARP registry key...

2012-11-05 Thread StevenOgilvie
Hi all, I am using the BootStrapper to install requisites that stay on the machine after the companies product is removed... I have NO need for the bootstrapper to create a registry key under HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall we install our product using the bootstrapper an

Re: [WiX-users] Wix Burn: Bundle condition does not work if using MBA

2012-11-05 Thread Rob Mensching
That's implemented by the wixstdba. You'd need to implement the same code in your BA. On Mon, Nov 5, 2012 at 10:28 AM, vasjko wrote: > Hi, > > I'm using bundle condition in WIX burn like this: > (VersionNT > >= v6.2), where bal is xmlns:bal=" > http://schemas.microsoft.com/wix/BalExtension";

[WiX-users] Wix Burn: Bundle condition does not work if using MBA

2012-11-05 Thread vasjko
Hi, I'm using bundle condition in WIX burn like this: (VersionNT >= v6.2), where bal is xmlns:bal="http://schemas.microsoft.com/wix/BalExtension"; It works fine and blocks installation if , but does not work if . I can check this condition using Engine.EvaluateCondition in my MBA C# code, b

Re: [WiX-users] Can Find WIX Project Type in VS 2012 PRO

2012-11-05 Thread Rob Mensching
Uninstalling Visual Studio will require a repair of WiX toolset to re-register. On Sun, Nov 4, 2012 at 11:37 AM, Todd Ford wrote: > I checked the install logs and it appears to be finding evidence of VS2012. > Maybe has something to do with the previous VS Express 2010 and lower > versions whic

[WiX-users] Password validation without CA

2012-11-05 Thread Nirmalraj Durai
Hi, i'm validating password (Edit) and confirm password (Edit) without using CA. I'm doing validation inside the "Next" button control. My objective is, if the passwords are not correct or if any of the edit is empty "Disable the Next Button" else Enable it. In my wix file i coded the following. I