Re: [WiX-users] Hiding passwords in the installation log file

2009-07-13 Thread Rob MacFadyen
@lists.sourceforge.net Message-ID: 4a5aa0be.1050...@joyofsetup.com Content-Type: text/plain; charset=ISO-8859-1; format=flowed Rob MacFadyen wrote: Is it possible to shield a property value from being displayed in the installation log file? Property/@Hidden -- sig://boB http://joyofsetup.com

Re: [WiX-users] DTF and PDB files for better error logging

2009-07-10 Thread Rob MacFadyen
didn't like the .csproj file I guess. -Original Message- Date: Wed, 8 Jul 2009 18:51:59 -0400 From: Rob MacFadyen rmacfad...@rmtrack.com Subject: Re: [WiX-users] WiX-users Digest, Vol 38, Issue 35 To: wix-users@lists.sourceforge.net Message-ID: 103a01ca001e$b4f9f760$1eede6...@com Content-Type

[WiX-users] Hiding passwords in the installation log file

2009-07-10 Thread Rob MacFadyen
Hey all, Is it possible to shield a property value from being displayed in the installation log file? The scenario I'm thinking of is an automatically generated password that should not be logged (or logged as masked **). Thanks, Rob

[WiX-users] DTF and PDB files for better error logging

2009-07-08 Thread Rob MacFadyen
Hey all, I've been doing a few C# based custom actions and find the DTF stuff very easy to use and it works quite well. However I'm wondering if there is anyway to include my custom action DLL's PDB file with the actual CA? If the .PDB was extracted and copied to the same location as the .DLL

Re: [WiX-users] DTF and PDB files for better error logging

2009-07-08 Thread Rob MacFadyen
Jason, I did this at one point but it was ineffective. On the installation side it appeared that the .PDB was not being extracted to the temporary directory. Are you certain this actually works and results in line numbers showing in stack traces for unhandled exceptions in managed CA's? Thanks,

Re: [WiX-users] WiX-users Digest, Vol 38, Issue 35

2009-07-08 Thread Rob MacFadyen
Jason, Thanks a ton! I'll dig into this again and see if I can make it work (fingers crossed). Regards, Rob -Original Message- Date: Wed, 8 Jul 2009 14:38:38 -0700 From: Jason Ginchereau jason...@microsoft.com Subject: Re: [WiX-users] DTF and PDB files for better error logging To:

[WiX-users] Creating a user and setting registry permissions

2009-06-10 Thread Rob MacFadyen
Hey all, I'm very confused. I want to create a local user and set registry permissions for that user. Simple enough right? Here's a WIX project to illustrate (references wixutilextension): ?xml version=1.0 encoding=UTF-8? Wix xmlns=http://schemas.microsoft.com/wix/2006/wi;

[WiX-users] Best way to add permissions to 'Temporary ASP.NET Files'

2009-03-09 Thread Rob MacFadyen
Hey all, What's the best approach to add specific user permissions to the Temporary ASP.NET Files folder? I don't see any way to connect a Permission element or a util:PermissionEx element to an existing folder. I did a quick test using CreateFolder/Permission... but that wiped out the existing

[WiX-users] IIS Extension and how to detect missing IIS6 Management Compatibility Pack

2009-03-09 Thread Rob MacFadyen
Hey all, I need to define a launch condition to prevent installation on win2008/vista if the IIS6 Management Compatibility Pack windows feature is not installed. I'm hoping the IIS extension defines a property to help with this. Does it? If not, is there a recommended method for checking for

Re: [WiX-users] Still not able to show Dialog from Managed CA

2009-02-23 Thread Rob MacFadyen
Not in C# but simple old VBScript (but does work). When I was first implementing this it took a bit of bashing/googling to get it to work. What's particular odd is the record seems to need to be 3 fields, but the only the first and third fields are used. Also the error template just needs to be

Re: [WiX-users] Adding records to MSI on the fly

2007-02-01 Thread Rob MacFadyen
carldldev, Not sure why the delete doesn't work. The update looks a bit odd... the bit here: ... comboText ') _ seems to include a closing parenthesis that does not have an open parenthesis. Are you suppressing errors (not usually a good thing to do)? Here's a function I have (I can't recall

Re: [WiX-users] Crash in dark

2007-01-31 Thread Rob MacFadyen
Andre, To deal with dark crashes what I've done in the past is some creative editing using Orcas. Usually this means removing any offending entries and or tables that dark is having trouble with. From the error message it looks like dark doesn't like the value in a column named KeyColumn.

Re: [WiX-users] Adding records to MSI on the fly

2007-01-31 Thread Rob MacFadyen
carlldev I use a subroutine to do the actual insert: Sub AddToComboBox(ByVal ComboProp, ByVal ComboOrder, ByVal ComboValue, ByVal ComboText) Dim query Dim view query = INSERT INTO `ComboBox` _ (`Property`, `Order`, `Value`, `Text`) _ VALUES ('

Re: [WiX-users] Any examples on how to do NGen?

2007-01-18 Thread Rob MacFadyen
Dan, There's a couple of examples on wixwiki (v3): http://www.wixwiki.com/index.php?title=NetFxExtension Regards, Rob _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dan Hoeger Sent: Thursday, January 18, 2007 9:59 AM To: wix-users@lists.sourceforge.net Subject:

Re: [WiX-users] automatically launching .Net framework install if it (.Net framework) is not present

2007-01-17 Thread Rob MacFadyen
There's additional information here: http://www.wixwiki.com/index.php?title=Deploying_Additional_Components Regards, Rob - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll

Re: [WiX-users] User Interface Help Needed On Displaying A Custom DIalog

2007-01-11 Thread Rob MacFadyen
There's a list of dialogs (with screen shots) at: http://www.wixwiki.com/index.php?title=UiExtension Regards, Rob -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bob Arnson Sent: Wednesday, January 10, 2007 11:57 PM To: Scullum Cc:

Re: [WiX-users] Running cmd.exe from a CustomAction

2006-12-17 Thread Rob MacFadyen
Michael, As a guess... the /c switch argument /c build\build-usual-image.bat doesn't specify a fully qualified path and cmd.exe is probably having problems locating it. Regards, Rob -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Michael Sperber Sent:

Re: [WiX-users] Running cmd.exe from a CustomAction

2006-12-17 Thread Rob MacFadyen
:[EMAIL PROTECTED] On Behalf Of Michael Sperber Sent: Sunday, December 17, 2006 1:48 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Running cmd.exe from a CustomAction Rob MacFadyen [EMAIL PROTECTED] writes: As a guess... the /c switch argument /c build\build-usual-image.bat

Re: [WiX-users] zip program for bootstrapper msi

2006-12-15 Thread Rob MacFadyen
The ChilKat ZipToSecureExe is a _demo_ of their commercial ZIP component. The commercial zip component allows for lots of things that are not part of the free demo. Here's a link to the docs: http://www.chilkatsoft.com/refdoc/xChilkatZip2Ref.html Of specific interest: Changing icon, changing

Re: [WiX-users] zip program for bootstrapper msi

2006-12-15 Thread Rob MacFadyen
From: David Thielen [mailto:[EMAIL PROTECTED] Sent: Friday, December 15, 2006 6:11 PM To: Rob MacFadyen; wix-users@lists.sourceforge.net Subject: RE: [WiX-users] zip program for bootstrapper msi Correct me if I'm wrong - I looked at this approach. But what

Re: [WiX-users] Simple help

2006-12-11 Thread Rob MacFadyen
Lionel, If you are new to Wix then you'll want to review the Wix2.0 tutorial at http://www.tramontana.co.hu/wix/. Firefox extension installation uses Firefox's javascript based installation technology. You'll need to Google for mozilla extension installation howto. The top link will give you

Re: [WiX-users] bootstrapper - final questions (I think)

2006-12-06 Thread Rob MacFadyen
David, For #1: The UI is _not_ configurable (with the exception of the title of the dialog boxes). The best way to structure this is to create a Self Extracting EXE that holds the Setup.exe and your MSI. Configure the Self Extracting EXE to run Setup.EXE when it is unpacked. ChilkatSoft.com

Re: [WiX-users] Need recomendation - including .NET redist

2006-12-04 Thread Rob MacFadyen
David, The most recent version does: http://www.microsoft.com/downloads/details.aspx?familyid=2A5E4EBC-651C-40AA- 9525-1810AF47C317 http://www.microsoft.com/downloads/details.aspx?familyid=2A5E4EBC-651C-40AA -9525-1810AF47C317displaylang=en displaylang=en Regards, Rob _ From:

[WiX-users] IIS Extension... how to specify ROOT

2006-11-25 Thread Rob MacFadyen
have to create a website to do this? Is there anyway to just update an existing website? Regards, Rob MacFadyen - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get

[WiX-users] IIS Admin Base Objects vs ADSI

2006-11-18 Thread Rob MacFadyen
Hey all, Does anyone know of stability differences between the admin base objects and adsi? I have an old installer that uses ADSI to create virtual directories... and occasionally the AppCreate2 call will fail with odd errors (sometimes the metabase vs SAM passwords for IWAM are out of sync).

[WiX-users] Upgrades... during RemoveExistingProducts action CA's don't have access to _any_ properties?

2006-11-09 Thread Rob MacFadyen
Hey all, I'm trying to implement handling for major upgrades for a web application installation. The use case I'm currently testing is: 1. User installs v1.0.0 of the application - Install gathers information about the virtual directory and database server - App is

[WiX-users] How to check if ASP.NET is enabled?

2006-11-01 Thread Rob MacFadyen
Hey all, Does anyone know how to check if ASP.NET 2.0 is _enabled_? Right now I'm always doing an aspnet_regiis -i... but this is taking maybe 10 seconds... which seems like a waste if ASP.NET is _already_ enabled. Picky picky... but after testing and testing and testing any time savings would

Re: [WiX-users] How to check if ASP.NET is enabled?

2006-11-01 Thread Rob MacFadyen
arget='_blank' href= "" href="http://www.microsoft.com/resources/documentation/IIS/6/all/techref/en-us/IISRG_WAS_8.mspx">http://www.microsoft.com/resources/documentation/IIS/6/all/techref/en-us/IISRG_WAS_8.mspxClick here/a for more information.") Exit Function end i

[WiX-users] Web services 3.0?

2006-10-31 Thread Rob MacFadyen
Hey all, Anyone know if there is a merge module for the Web Services 3.0 runtime? There is a redistributable .MSI available here: http://www.microsoft.com/downloads/details.aspx?familyid=9e59c3fb-e7bc-4d91- 908e-411a8d329f3ddisplaylang=en ... but no actual msm. Regards, Rob

[WiX-users] HOWTO: Set web.config connectionString using XmlFile element

2006-10-31 Thread Rob MacFadyen
Hey all, Just for the archives. For wix3 reference/link with WixUtilExtension and add the UtilExtension namespace declaration to the Wix element like so: Wix xmlns=http://schemas.microsoft.com/wix/2006/wi; xmlns:util=http://schemas.microsoft.com/wix/UtilExtension; To define a component

[WiX-users] Web.config and major upgrades?

2006-10-30 Thread Rob MacFadyen
Hey all, I'm working on an installer that installs a web based ASP.NET 2.0 application. Users can choose web server and/or virtual directory, setup an SQL Server database, and so forth. I'm not using the web extensions or otherwise (are there SQL extensions?)... everything is through a few

[WiX-users] WixUiExtension (wix 3)

2006-10-29 Thread Rob MacFadyen
Hey all, I've dropped my custom errors and progress messages in favor of the WixUiExtension errors and progress messages. But... error message 1720 (vbscript error) is a bit lacking. The current message does show the full information available. Could the message be updated to be: Error

[WiX-users] New votive... rocks

2006-10-25 Thread Rob MacFadyen
Title: Custom Action in Merge Module Hey all, So I've been busily hacking away at my installer with Votive... and it really rocks. The whole "dark - notepad - visual studio - hack and slash - compile - goto hack and slash" process is greatly improved. The VS error list is populated,

[WiX-users] Votive3... uhm... am I missing something?

2006-10-23 Thread Rob MacFadyen
Title: QuietExec error Hey all, Anyone using Votive3? I uninstalled my previous build, downloaded and installed the new build... and it looks like Visual Studio is still using the old build (I did follow the instructions... no visual studio running, installed the project aggregator first).

Re: [WiX-users] Votive3... uhm... am I missing something?

2006-10-23 Thread Rob MacFadyen
exists) then reinstall again. Anthony From: Rob MacFadyen Sent: Tuesday, October 24, 2006 10:05 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Votive3... uhm... am I missing something? Hey all, Anyone using Votive3? I uninstalled my previous build

[WiX-users] Converting prior 3.0 votive projects to current votive

2006-10-23 Thread Rob MacFadyen
Title: QuietExec error Hi all, When I try to open a Votive solution (from previous 3.0 release) using the 2211 build I get the following message: The project file must be opened in the Visual Studio IDE and converted to the latest version before it can be built by MSBuild.

Re: [WiX-users] Bit of a twist

2006-09-06 Thread Rob MacFadyen
Morton, I'm not sure why calling a script makes the code messy and maintenance much harder. Especially compared to calling a dll. Here's the script I use to load a dropdown list of available (already defined) websites on a server. Note: It sets the property WEBSITE to the name of the first

Re: [WiX-users] Checkbox and SQL scripts

2006-09-06 Thread Rob MacFadyen
=MyExecuteScripts![CDATA[MYCHECBOX 1]]/Custom (note: The above assumes the existence of a property named MYCHECKBOX which has a value of 1 when the user interface checkbox was been checked. It also assumes the existence of a CA called MyExecuteScripts). Regards, Rob MacFadyen -Original Message

Re: [WiX-users] Heat?

2006-08-30 Thread Rob MacFadyen
of applications are doing 1-to-1 component to file mapping, then the does anything need repairing routine will suffer considerably... won't it? Can anyone comment on the performance aspects of 1 to 1 component/file mapping? Regards, Rob MacFadyen

[WiX-users] Heat?

2006-08-29 Thread Rob MacFadyen
Hey all, Is there anyway to make heat stop producing a 1 to 1 correspondence between files and components? For example: Directory Id=Images Name=Images Component Id=blip_four_squares.gif Guid={BB93CAA0-A4AD-4EA1-99C8-C20E0F8F34C8} File Id=blip_four_squares.gif Name=blip_four_squares.gif

Re: [WiX-users] WebServiceExtension Element

2006-08-01 Thread Rob MacFadyen
. Regards, Rob MacFadyen - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT business topics through brief surveys -- and earn