Re: [WiX-users] How to continue on close of modal popup?

2011-01-19 Thread Matt Johnson
ject: Re: [WiX-users] How to continue on close of modal popup? In the set of actions that SpawnDialog is a part of, continue with further actions that either end there or move onto the next dialog (based on the value of the property you set in the warning dialog). -Original Message- From: Ma

[WiX-users] How to continue on close of modal popup?

2011-01-17 Thread Matt Johnson
I have a UI dialog that I want to present a "warning" popup when a field is blank. The dialog is launched with SpawnDialog and says something like "Do you really want the field empty?" There are two buttons labeled "Yes" and "No". If the user picks "No", it's easy enough to close the popup an

Re: [WiX-users] WixUI CustomizeDlg

2010-06-23 Thread Matt Johnson
them in their own feature because they don't function without one of the three applications. It doesn't make sense to have separate installers for these applications because a common scenario is to install all three on the same machine, and the common components are quite large. Ma

[WiX-users] WixUI CustomizeDlg

2010-06-22 Thread Matt Johnson
here's the SelectionNoItems event, but it only handles the case where there are no items in the selection box, which is pretty much never. Ideas? Thanks, Matt Johnson MCPD, MCTS, MCSD, MCDBA Director of Application Development Time America, Inc. ma...@timeamerica.com | www.

Re: [WiX-users] Set package name dynamically

2010-06-21 Thread Matt Johnson
Johnson MCPD, MCTS, MCSD, MCDBA Director of Application Development Time America, Inc. ma...@timeamerica.com | www.timeamerica.com -Original Message- From: Matt Johnson [mailto:ma...@timeamerica.com] Sent: Monday, June 21, 2010 2:50 PM To: General discussion for Windows Installer XML

Re: [WiX-users] Set package name dynamically

2010-06-21 Thread Matt Johnson
his a safe approach? Does that key perhaps only work for me because I'm on Windows 7, or do you think it will it work on older versions of Windows? Obviously, I need to do some testing. Thanks, Matt Johnson MCPD, MCTS, MCSD, MCDBA Director of Application Development Time America, Inc. ma.

Re: [WiX-users] Set package name dynamically

2010-06-21 Thread Matt Johnson
hed msi is written, and what the filename is. Then I could use MsiSummaryInfoSetProperty just on the cached file, yes? Matt Johnson MCPD, MCTS, MCSD, MCDBA Director of Application Development Time America, Inc. ma...@timeamerica.com | www.timeamerica.com -Original Message- From: Blair

[WiX-users] Set package name dynamically

2010-06-18 Thread Matt Johnson
nformation stream. Is there a way to write to the summary information stream dynamically at runtime? Or is this hardcoded into the MSI? Perhaps there's a way to write to the cached MSI that Add/Remove programs is looking at? I'm not sure where it's cached to. Please help. T

Re: [WiX-users] UI Edit Box not updating

2010-05-20 Thread Matt Johnson
Hi Peter, Thank you very much! The twin dialog works perfectly! IMHO - Since this is a limitation with MSI, this is probably something that should be highlighted in the Msi or Wix docs. Matt Johnson MCPD, MCTS, MCSD, MCDBA Director of Application Development Time America, Inc. ma

[WiX-users] UI Edit Box not updating

2010-05-19 Thread Matt Johnson
ything, or clear it. 7) Push the button again and notice the edit box did not change this time! 8) For giggles, click back, then next, and notice the edit box now shows the correct value. Thanks, Matt Johnson MCPD, MCTS, MCSD, MCDBA Director of Application Development Ti

Re: [WiX-users] HarvestDirectory in 3.5 doesn't quote the include path

2010-05-19 Thread Matt Johnson
Try using $(Configuration) instead of Release Matt Johnson MCPD, MCTS, MCSD, MCDBA Director of Application Development Time America, Inc. ma...@timeamerica.com | www.timeamerica.com -Original Message- From: John Ketchpaw [mailto:jketch...@panopto.com] Sent: Tuesday, May 18, 2010 6:35

Re: [WiX-users] RegistrySearch converts value data

2010-05-14 Thread Matt Johnson
ular x64 root and the wow x86 key - so it's not that it's pulling from the wrong place. Perhaps there's a property to set to tell MSI not to do this replacement? Matt Johnson MCPD, MCTS, MCSD, MCDBA Director of Application Development Time America, Inc. ma...@timeamerica.com | www

Re: [WiX-users] Adding reference to WiX project doesn't lead to copy referenced project's files

2010-05-14 Thread Matt Johnson
references, or using heat from the commandline, specify project output groups Binares and Content. I know this works, because I am using it for a web project, which has .aspx and .config files as content, and they get harvested just fine. Matt Johnson MCPD, MCTS, MCSD, MCDBA Director of

Re: [WiX-users] Adding reference to WiX project doesn't lead to copy referenced project's files

2010-05-13 Thread Matt Johnson
ibute to your File elements in the generated wxs. I know this is an ugly workaround. I hope someone that works on Votive is listening. This is a great example of why we need to be able to specify transforms as a property on the project reference. Matt Johnson MCPD, MCTS, MCSD, MCDBA Director of

Re: [WiX-users] Using web.config transformations in WiX

2010-05-07 Thread Matt Johnson
\transformed\Web.config That's it. When you build, msbuild will transform the webconfig, then heat will use the xslt to point at it properly. Matt Johnson MCPD, MCTS, MCSD, MCDBA Director of Application Development Time America, Inc. ma...@timeamerica.com | www.timeamerica.com -Ori

Re: [WiX-users] How to retain feature selection during major upgrade?

2010-05-06 Thread Matt Johnson
That looks like the problem. Looks like I can simply specify UpgradeVersion/@MigrateFeatures="yes" and wix will do the rest. Thanks for pointing me in the right direction! Matt Johnson MCPD, MCTS, MCSD, MCDBA Director of Application Development Time America, Inc. ma...@timea

[WiX-users] Icon on util:InternetShortcut

2010-05-06 Thread Matt Johnson
There is no Icon property on util:InternetShortcut. Is there a workaround to change the icon? I want the url shortcuts to the web-app I'm installing to have my applicaton's icon instead of internet explorer. Thanks, Matt Johnson MCPD, MCTS, MCSD, MCDBA Director of Application D

Re: [WiX-users] XMLFile not Finding file to Edit Even Though File is Verified There

2010-05-06 Thread Matt Johnson
Also, you should make sure the file you're editing is parsable as XML. My guess is that an aspx file is not. You would be better off moving the item you're trying to change to a setting in the web.config. You can definately edit the web.config as xml. Matt Johnson MCPD, MCTS, M

Re: [WiX-users] XMLFile not Finding file to Edit Even Though File is Verified There

2010-05-06 Thread Matt Johnson
Where you have: File="[INSTALLLOCATION][ProductName]\Default.aspx" Try this instead: File="[#FDEFAULTASPX]" The [#filekey] syntax will resolve to the correct location. Matt Johnson MCPD, MCTS, MCSD, MCDBA Director of Application Development Time America, Inc. m

Re: [WiX-users] Best way to 'fix' string overflow in ExeCommand for CAs

2010-05-06 Thread Matt Johnson
characters. That's before actually converting each property into its value. Matt Johnson MCPD, MCTS, MCSD, MCDBA Director of Application Development Time America, Inc. ma...@timeamerica.com | www.timeamerica.com -Original Message- From: Navid Azimi-Garakani [mailt

Re: [WiX-users] db install thoughts

2010-05-06 Thread Matt Johnson
e the scripts. I break up the script into separate chunks with "GO" statements. At each GO, I can update the progress bar. I also do some basic string replacement to emulate sqlcmd's variable syntax. Matt Johnson MCPD, MCTS, MCSD, MCDBA Director of Application Development Time

[WiX-users] How to retain feature selection during major upgrade?

2010-05-06 Thread Matt Johnson
rades feature A and installs feature B. How can I check the previous feature selection so the feature tree is loaded properly with the prior selections? I use the standard CustomizeDlg from WixUI. Thanks, Matt Johnson MCPD, MCTS, MCSD, MCDBA Director of Application Development Time A

Re: [WiX-users] can't find file in non-cab media

2010-05-04 Thread Matt Johnson
Awesome! Thanks for pointing out the article! I'm still getting a feel for how to navigate between the different layers of docs. Wix is not MSI. Really you have to learn both and understand the translation from XML tags to MSI tables to get it all straight. Matt Johnson MCPD, MCTS,

Re: [WiX-users] can't find file in non-cab media

2010-05-04 Thread Matt Johnson
ressed="no" on just my one external file. I guess it only works in one direction. Matt Johnson MCPD, MCTS, MCSD, MCDBA Director of Application Development Time America, Inc. ma...@timeamerica.com | www.timeamerica.com -Original Message- From: Alexander Shevchuk (Volt) [mailto:a

Re: [WiX-users] How To Skip Custom Dilalog On Repair ?

2010-05-04 Thread Matt Johnson
Vishwajit, The condition you are looking for is simply "NOT Installed" Matt Johnson MCPD, MCTS, MCSD, MCDBA Director of Application Development Time America, Inc. ma...@timeamerica.com | www.timeamerica.com -Original Message- From: Vishwajit Walke [mailto:vishwajit.wa...@ma

Re: [WiX-users] Read file content from CA

2010-05-04 Thread Matt Johnson
If it's a regular file, then it should be installed on disk. Just schedule your custom action to run after InstallFiles, then you can read it from disk where it was installed. Matt Johnson MCPD, MCTS, MCSD, MCDBA Director of Application Development Time America, Inc. ma...@timeameric

[WiX-users] can't find file in non-cab media

2010-05-03 Thread Matt Johnson
7;s for something else. Ideas? Help please. Thanks, Matt Johnson MCPD, MCTS, MCSD, MCDBA Director of Application Development Time America, Inc. ma...@timeamerica.com | www.timeamerica.com -- ___

Re: [WiX-users] Property/@Secure - when to use?

2010-05-03 Thread Matt Johnson
Very interesting. My particular installer is for setting up a server application, so I require an administrator to perform the install. Matt Johnson MCPD, MCTS, MCSD, MCDBA Director of Application Development Time America, Inc. ma...@timeamerica.com | www.timeamerica.com -Original

Re: [WiX-users] Update progress bar from deferred custom action

2010-05-03 Thread Matt Johnson
dialog and you'll want to exit your custom action cleanly with ActionResult.UserExit. Matt Johnson MCPD, MCTS, MCSD, MCDBA Director of Application Development Time America, Inc. ma...@timeamerica.com | www.timeamerica.com -----Original Message- From: Matt Johnson [mailto:ma...@timeamer

Re: [WiX-users] Update progress bar from deferred custom action

2010-05-02 Thread Matt Johnson
Dariel, I'm doing this in a managed custom action (c#). I'll post it here first thing tomorrow. -Matt Sent from my iPhone On May 2, 2010, at 7:52 PM, "Rob Mensching" wrote: > The WiX toolset uses WcaProgressMessage() to do this. There are a > number of > examples in the WiX custom actio

Re: [WiX-users] Property/@Secure - when to use?

2010-05-01 Thread Matt Johnson
ed privileges, but none that needed a property value during uninstall. Matt Johnson MCPD, MCTS, MCSD, MCDBA Director of Application Development Time America, Inc. ma...@timeamerica.com | www.timeamerica.com -Original Message- From: Nick Ramirez [mailto:nickra...@hotmail.com] Sent: Saturday

Re: [WiX-users] IIS actions failing - fixed!

2010-05-01 Thread Matt Johnson
K YOU! :) Matt Johnson MCPD, MCTS, MCSD, MCDBA Director of Application Development Time America, Inc. ma...@timeamerica.com | www.timeamerica.com -Original Message- From: Rob Mensching [mailto:r...@robmensching.com] Sent: Tuesday, April 27, 2010 7:27 PM To: General discussion for Windows Inst

Re: [WiX-users] Property/@Secure - when to use?

2010-04-29 Thread Matt Johnson
Lol. See my prior posts from today. I needed this specifically to get a property from a registry key to pass to a custom action during uninstall. Matt Johnson MCPD, MCTS, MCSD, MCDBA Director of Application Development Time America, Inc. ma...@timeamerica.com | www.timeamerica.com

Re: [WiX-users] Simple question about properties

2010-04-29 Thread Matt Johnson
diate action. Matt Johnson MCPD, MCTS, MCSD, MCDBA Director of Application Development Time America, Inc. ma...@timeamerica.com | www.timeamerica.com -Original Message- From: Matt Johnson [mailto:ma...@timeamerica.com] Sent: Thursday, April 29, 2010 9:36 AM To: General discussion for Wi

Re: [WiX-users] Simple question about properties

2010-04-29 Thread Matt Johnson
". Is an uninstall considered managed while an install isn't? Is there any other impact or concern about marking this property secure? Thanks, Matt Johnson MCPD, MCTS, MCSD, MCDBA Director of Application Development Time America, Inc. ma...@timeamerica.com | www.timeameri

Re: [WiX-users] Simple question about properties

2010-04-28 Thread Matt Johnson
That's what I thought. Thanks. Matt Johnson MCPD, MCTS, MCSD, MCDBA Director of Application Development Time America, Inc. ma...@timeamerica.com | www.timeamerica.com -Original Message- From: Castro, Edwin G. (Hillsboro) [mailto:edwin.cas...@fiserv.com] Sent: Wednesday, April 28,

[WiX-users] Simple question about properties

2010-04-28 Thread Matt Johnson
ll? Or is there some way to just mark the property so that it persists? Thanks, Matt Johnson MCPD, MCTS, MCSD, MCDBA Director of Application Development Time America, Inc. ma...@timeamerica.com<mailto:ma...@timeamerica.com> | www.timeamerica.com<http://

Re: [WiX-users] Problem creating virtual directory on Windows 2003

2010-04-28 Thread Matt Johnson
This is another example of the bug I reported here yesterday, and several others are reporting in SFBUG:2966134 and SFBUG:2979773. They both have priority 5. Hopefully it is getting more attention than that, as it seems widespread. Thanks, Matt Johnson MCPD, MCTS, MCSD, MCDBA Director of

Re: [WiX-users] [1], [2] etc references in the language file

2010-04-27 Thread Matt Johnson
icks; record[2] = statusText; record[3] = ""; return session.Message(InstallMessage.ActionStart, record); } Not sure if this is what you were looking for, but thought I would share for all. Matt Johnson MCPD, MCTS, MCSD, MCDBA Director of Application Development

Re: [WiX-users] IIS actions failing

2010-04-27 Thread Matt Johnson
Also - it looks like this is the same bug reported in SFBUG:2966134 - but unlike the other user that report it, it is still broken for me. I am posting an update to that bug. Matt Johnson MCPD, MCTS, MCSD, MCDBA Director of Application Development Time America, Inc. ma...@timeamerica.com

Re: [WiX-users] IIS actions failing

2010-04-27 Thread Matt Johnson
ssing WebServiceExtensions. (-2147024890 ) And here's my wxs for IIS 6 (I have separate components for each IIS version) IISMAJORVERSION = "#6" Thanks, Matt Johnson MCPD, MCTS, MCSD, MCDBA Director of Application Development Time America, Inc. m

Re: [WiX-users] Dialog for user selection?

2010-04-27 Thread Matt Johnson
ervers, but it failed because SQLDMO isn't on the target machine (I think). So instead I'm using this one http://madbutcher.dyndns.org/snippets/SQLMsiCA/ which wraps a call to ODBC's SQLBrowseConnect. I'd rather use SQLDMO, but not sure I want to bootstrap it. Matt Johnso

[WiX-users] IIS actions failing

2010-04-27 Thread Matt Johnson
matted one and it doesn't work while IIS7 doesn't have it and needs it. Thanks for any and all help. Matt Johnson MCPD, MCTS, MCSD, MCDBA Director of Application Development Time America, Inc. ma...@timeamerica.com<mailto:ma..

Re: [WiX-users] Dialog for user selection?

2010-04-27 Thread Matt Johnson
That's exactly what I was looking for. Thank you! Matt Johnson MCPD, MCTS, MCSD, MCDBA Director of Application Development Time America, Inc. ma...@timeamerica.com | www.timeamerica.com -Original Message- From: dB. [mailto:dbl...@dblock.org] Sent: Monday, April 26, 2010 7:05

[WiX-users] Dialog for user selection?

2010-04-26 Thread Matt Johnson
I'm working on an installer that will need to run under a specific user context. Does anyone know a way (or have a sample) of how to present a standard user selection dialog? I'm hoping to have it use the ones built in to Windows, and then return it to me as a property. Thanks, - Matt -

Re: [WiX-users] Install x64-DLL

2010-04-22 Thread Matt Johnson
Never mind. I just got it working. I must have typo'd something. It works with Win64="yes", and I do indeed get an ICE80 warning. Thanks, Matt -Original Message----- From: Matt Johnson [mailto:ma...@timeamerica.com] Sent: Thursday, April 22, 2010 3:15 PM To: General

Re: [WiX-users] Install x64-DLL

2010-04-22 Thread Matt Johnson
Sorry Pally, I was directing my question to you. Not sure how I got "Thomas"... must have been looking at another email. :) -Original Message----- From: Matt Johnson Sent: Thursday, April 22, 2010 3:12 PM To: General discussion for Windows Installer XML toolset. Subject: RE:

Re: [WiX-users] Install x64-DLL

2010-04-22 Thread Matt Johnson
to get to HKLM\SOFTWARE\Microsoft instead of HKLM\SOFTWARE\Wow6432Node\Microsoft. I would think Win64="yes" would do the trick, but it appears to ignore it and give me the WOW key anyway. Is this broken in the latest Wix 3.5 build? Thanks, Matt Johnson MCPD, MCTS, MCSD, MCDB

Re: [WiX-users] Wix 3.5 fails installing IIS7 website

2010-04-21 Thread Matt Johnson
I had similar issues. Some of which I was able to resolve by making sure that the reference to the web site had an IP specified - even if it's the wildcard: Without the IP="*" - IIS 7 and IIS 5.1 gave me all kinds of strange issues. Funny that IIS 6 didn't mind it missing. -Matt -