Re: [WiX-users] Heat - Include question

2013-05-28 Thread Mike Carlson
.” Or there will be localization problems when installed in other languages? Do you have some recommendations? Thanks a lot for your time. 2013/5/22 BGINFO4X bginf...@kztsoftware.com: Ok, thanks a lot. Regards. 2013/5/21 Mike Carlson corf...@gmail.com: Ah, then you do want to support upgrades. Get your

Re: [WiX-users] Heat - Include question

2013-05-21 Thread Mike Carlson
You should be able to. Create the shortcut in your own authoring file. To point to the file in the generated authoring, see the Target attribute of the shortcut element in wix.chm. On Tue, May 21, 2013 at 4:37 AM, BGINFO4X bginf...@kztsoftware.com wrote: You should change it to this:

Re: [WiX-users] Heat - Include question

2013-05-21 Thread Mike Carlson
Mike Carlson corf...@gmail.com: You should be able to. Create the shortcut in your own authoring file. To point to the file in the generated authoring, see the Target attribute of the shortcut element in wix.chm. Thanks a lot , I will try it. I have a conceptual question regarding

Re: [WiX-users] Quick help..

2013-05-21 Thread Mike Carlson
Chain all the MSI files you want to install with a burn bundle. It will by default not show each MSI it installs in add/remove programs (ARP), instead you will still see a single entry in ARP for the bundle itself. Note if you do want some of your MSI's to show up individually in ARP, you can

Re: [WiX-users] Force MSI Overwrite the files.

2013-05-21 Thread Mike Carlson
When you say another package, I assume you mean another MSI? Make sure the component GUIDs in your MSI match the component GUIDs in the other MSI so you don't break the component rules, and then for any of the files that have file versions (such as .exe or .dll files), make sure your version

Re: [WiX-users] Quick help..

2013-05-21 Thread Mike Carlson
I agree with John - please avoid setting the arpsystemcomponent. It's extremely annoying to install something and be unable to uninstall it from the UI, and is really only meant for system components that make no sense to uninstall. I suggest you author a burn bundle to hide all the individual

Re: [WiX-users] Heat - Include question

2013-05-17 Thread Mike Carlson
The problem you're running into is that the generated components are by default generated under a directory under TARGETDIR, not INSTALLDIR. To override this: 1) Add (for example) -dr foo to your heat commandline to generate them under a directory of ID foo 2) In your main authoring file, you

Re: [WiX-users] Heat - Include question

2013-05-17 Thread Mike Carlson
Your problem is that basedir isn't a child of INSTALLDIR, it's a child of ProgramFilesFolder. Here is your current code: Directory Id='ProgramFilesFolder' Name='PFiles' Directory Id='INSTALLDIR' Name='BGInfo4X for Windows $(var.ProductVersion)'/Directory Directory

Re: [WiX-users] log stdout and stderr to the msi log

2013-05-17 Thread Mike Carlson
I don't know the direct answer to your question, but taking a step back, have you considered any alternatives instead of adding a custom action? Custom actions are notoriously difficult to write correctly, and very, very easy to get wrong. A custom action that invokes an external process (such as

Re: [WiX-users] Help related to AppPool

2010-06-09 Thread Mike Carlson (DEV DIV)
it. That solution probably doesn't fit your situation, so another solution is if you don't want the app pool to be removed on uninstall, put it in its own component and make the component Permanent. Thanks, Mike Carlson -Original Message- From: Ravi Sanker Badipetla [mailto:ravi.san

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

2010-05-06 Thread Mike Carlson (DEV DIV)
remember with what error code. Another possibility - is it possible the permissions on a parent directory of this file are extremely restrictive? Thanks, Mike Carlson -Original Message- From: John Cooper (Volt) [mailto:a-jc...@microsoft.com] Sent: Thursday, May 06, 2010 12:02 PM

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

2010-05-06 Thread Mike Carlson (DEV DIV)
. I'll check. -- John M. Cooper Volt at Microsoft -Original Message- From: Mike Carlson (DEV DIV) [mailto:mica...@microsoft.com] Sent: Thursday, May 06, 2010 2:15 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] XMLFile not Finding file to Edit Even Though

Re: [WiX-users] WiX 3.5 dutil.lib build

2010-04-28 Thread Mike Carlson (DEV DIV)
The VerQueryValueW() call has been there since WiX 3.5 forked from WiX 3.0, so I don't think this problem is necessarily Unicode-related. Perhaps you only recently started using FileUtil's FileVersion() function (which requires version.lib to be linked in)? Try adding version.lib to the list

Re: [WiX-users] WiX 3.5 dutil.lib build

2010-04-28 Thread Mike Carlson (DEV DIV)
Just saw your later reply with the solution to your own problem; sorry for the spam everyone. Threads on this alias aren't well-organized in my mail viewer, and I often forget to manually check if there is a later reply to a thread, before replying myself... Thanks, Mike Carlson

Re: [WiX-users] WiX 3.5 Source Code

2010-04-28 Thread Mike Carlson (DEV DIV)
Yes, we still use nant/wix.build, and make.bat should work. I don't have direct experience with the wix CVS repository, but I would think it's best to begin building from cvs. If there is a problem, certainly it's something we will want to fix. -Original Message- From: Neil Sleightholm

Re: [WiX-users] Adding Digital Signature to MSI

2010-04-19 Thread Mike Carlson (DEV DIV)
appropriately, according to the way you signed your cabs. If you use MSBuild, this integrates well with MSBuild as well - see the WiX 3.5 CHM page on Insignia for instructions to use insignia with MSBuild. Thanks, Mike Carlson -Original Message- From: Ondrej Zarevucky

Re: [WiX-users] Adding Digital Signature to MSI

2010-04-13 Thread Mike Carlson (DEV DIV)
easier - see wix.chm for more information about Insignia in WiX 3.5. Thanks, Mike Carlson -Original Message- From: Christof Schmutz [mailto:christof.schm...@cstsoft.de] Sent: Tuesday, April 13, 2010 11:07 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users

Re: [WiX-users] How to create web app/service on IIS 7 with WiX 3.0

2010-04-01 Thread Mike Carlson (DEV DIV)
3.5 I changed to be after ConfigureIIs7), but from log file I can see that website was not created after ConfigureIIs7 action. Can you please specify name after which IIS action I should execute mine custom action? -Original Message- From: Mike Carlson (DEV DIV) [mailto:mica

Re: [WiX-users] WiX 3.5: Error in HEAT

2010-03-31 Thread Mike Carlson (DEV DIV)
Also, what version of the tools are you running? Have you tried 3.0 RTM or a recent 3.5 weekly release? -Original Message- From: s...@pacaccess.com [mailto:s...@pacaccess.com] Sent: Wednesday, March 31, 2010 10:26 AM To: General discussion for Windows Installer XML toolset. Subject: Re:

Re: [WiX-users] How to create web app/service on IIS 7 with WiX 3.0

2010-03-29 Thread Mike Carlson (DEV DIV)
://sourceforge.net/tracker/?func=detailaid=2961215group_id=105970; atid=642714 Is it the same as yours? And Mike already fixed it in the latest Wix build which should be available today. -Original Message- From: Mike Carlson (DEV DIV) [mailto:mica...@microsoft.com] Sent: Thursday, March 25, 2010 8

Re: [WiX-users] How to create web app/service on IIS 7 with WiX 3.0

2010-03-25 Thread Mike Carlson (DEV DIV)
I'd file a bug with the authoring you pasted below, and the answers to these questions, if possible: What's the exact error message you get (use a verbose logfile to find out)? Does it work correctly if you install to an IIS6 machine? Thanks, Mike Carlson -Original Message- From: Ivo

Re: [WiX-users] heat Harvest Types of project not working

2010-03-24 Thread Mike Carlson (DEV DIV)
It shouldn't be giving this message, but have you tried building the project? I ask because it could be a secondary file (like the primary output) that heat is trying to open (and is causing the exception to occur). -Original Message- From: Bill McCormick (LIST)

Re: [WiX-users] Registering a COM DLL

2010-03-23 Thread Mike Carlson (DEV DIV)
The recommended way now is typically to run heat.exe to harvest the com registration information out of your DLL. This way it won't actually run the code from the DLL at install-time (which is more likely to fail, won't handle all of MSI's transactionality appropriately, and is generally a

Re: [WiX-users] (no subject)

2010-03-22 Thread Mike Carlson (DEV DIV)
The problem you're running into is that in the MSI world, [PropertyName] is used to dynamically (at install-time) pull in the value of a property. So, you need to escape your bracket so it isn't looked at in that way. To escape [ replace it with [\[] To escape ] replace it with [\]] The full

Re: [WiX-users] (no subject)

2010-03-22 Thread Mike Carlson (DEV DIV)
I just realized this was already replied to. Apologies for the spam, everyone. -Original Message- From: Mike Carlson (DEV DIV) Sent: Monday, March 22, 2010 11:26 AM To: wix-users@lists.sourceforge.net Subject: RE: [WiX-users] (no subject) The problem you're running

Re: [WiX-users] WIX 2.0 on IIS 7.5 with IIS 6.0 Compatiblity Mode

2010-03-16 Thread Mike Carlson (DEV DIV)
-Garakani Sent: Monday, March 15, 2010 8:34 PM To: General discussion for Windows Installer XML toolset. Cc: Mike Carlson (DEV DIV) Subject: RE: WIX 2.0 on IIS 7.5 with IIS 6.0 Compatiblity Mode I should mention that that errors are primarily trivial with the exception of the following: 1src\setup

Re: [WiX-users] WIX 2.0 on IIS 7.5 with IIS 6.0 Compatiblity Mode

2010-03-16 Thread Mike Carlson (DEV DIV)
. Thanks, Mike Carlson -Original Message- From: Navid Azimi-Garakani Sent: Tuesday, March 16, 2010 1:36 PM To: Mike Carlson (DEV DIV); General discussion for Windows Installer XML toolset. Subject: RE: WIX 2.0 on IIS 7.5 with IIS 6.0 Compatiblity Mode Thanks again. Running WixCop will help

Re: [WiX-users] WIX 2.0 on IIS 7.5 with IIS 6.0 Compatiblity Mode

2010-03-15 Thread Mike Carlson (DEV DIV)
the IIS6 compatibility layer (but 3.5 is still under development, so expect some bugs if you try 3.5). Thanks, Mike Carlson -Original Message- From: Navid Azimi-Garakani [mailto:naz...@microsoft.com] Sent: Monday, March 15, 2010 2:29 PM To: wix-users@lists.sourceforge.net Subject: [WiX

Re: [WiX-users] Single msi with multi languages installs according to OS display language

2010-03-08 Thread Mike Carlson (DEV DIV)
You need to use a bootstrapper (an EXE designed for running one or more installation packages) that will pass the appropriate language property to the MSI at install-time. WiX 3.5 will have a bootstrapper called Burn, but it's still under development right now. Thanks, Mike Carlson

Re: [WiX-users] Uninstall failure in full UI mode when per Machine installation is used

2010-03-03 Thread Mike Carlson (DEV DIV)
I believe you want to list these properties as the value of the built-in SecureCustomProperties property, so they will be set in the server context as well. Try adding something like this to your authoring: Property Id=SecureCustomProperties Value=WEBSITENAME;WEBSITEPORT/ Thanks, Mike

Re: [WiX-users] Interrupting a WiX build

2010-02-10 Thread Mike Carlson (DEV DIV)
Message - From: Mike Carlson (DEV DIV) mica...@microsoft.com To: General discussion for Windows Installer XML toolset. wix-users@lists.sourceforge.net Sent: Tue Feb 09 17:23:12 2010 Subject: Re: [WiX-users] Interrupting a WiX build Do the cancel build (etc.) buttons work? If you're sure the regular

Re: [WiX-users] Interrupting a WiX build

2010-02-09 Thread Mike Carlson (DEV DIV)
Do the cancel build (etc.) buttons work? If you're sure the regular cancel build options that work for C++ / C# builds aren't working for wix (either the options aren't visible, or the options are visible but don't function as you feel they should), go ahead and file a bug against WiX 3.5 /

Re: [WiX-users] Creation of an application pool on IIS7 installed on a server cluster

2010-01-29 Thread Mike Carlson (DEV DIV)
to reproduce the problem as you can in the bug, and the log excerpts you've already provided in this e-mail are perfect; make sure to include those in your bug reports too. Thanks, Mike Carlson -Original Message- From: Matteo Canessa [mailto:matteo.cane...@microarea.it] Sent: Friday, January

Re: [WiX-users] Creation of an application pool on IIS7 installed on a server cluster

2010-01-28 Thread Mike Carlson (DEV DIV)
can. Thanks, Mike Carlson -Original Message- From: Matteo Canessa [mailto:matteo.cane...@microarea.it] Sent: Thursday, January 28, 2010 6:53 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Creation of an application pool on IIS7 installed on a server cluster Hi to everybody

Re: [WiX-users] installing SSL website on IIS 7.5 using Wix 3.0

2010-01-27 Thread Mike Carlson (DEV DIV)
if that solves the problem? If it doesn't solve the problem, file a bug on sourceforge against v3.5, attach a repro (make sure to exclude any sensitive things from your authoring, if there are any), and attach a verbose MSI log of the install which didn't seem to work. Thanks, Mike Carlson

Re: [WiX-users] unexplained Custom Action failure

2010-01-07 Thread Mike Carlson (DEV DIV)
underlying wix's design is that users should only write declarative authoring to represent the things they want installed, and let the installation engine (and/or the built-in wix custom actions) handle the actual installation for you. Thanks, Mike Carlson -Original Message- From: phillip_sid

Re: [WiX-users] Building Votive - Email found in subject

2010-01-06 Thread Mike Carlson (DEV DIV)
Look closely; some of the link was cut off and placed in the next line, and this portion was excluded from the hyperlink. If you include the ine.html from the next line in the part that's hyperlinked, the link works for me. -Original Message- From: Jahanzeb Khan

Re: [WiX-users] IIS7 and WiX 3.5.1023.0

2009-11-05 Thread Mike Carlson (DEV DIV)
It sounds to me like a bug. Please file one - don't forget to copy all the helpful information (version information, sample authoring + log failure messages) from your mail into the bug. Thanks, Mike Carlson -Original Message- From: Duncan Kelbie [mailto:duncan.kel...@neuralt.com

Re: [WiX-users] Build speedup

2009-11-04 Thread Mike Carlson (DEV DIV)
(set Media/@EmbedCab to no) instead of embedded in the MSI, and wix shouldn't have to do anything with it if it hasn't changed. Thanks, Mike Carlson -Original Message- From: Kim Gybels [mailto:kim.gyb...@metris.com] Sent: Wednesday, November 04, 2009 2:27 AM To: General discussion

Re: [WiX-users] Link error for dutil.lib

2009-11-03 Thread Mike Carlson (DEV DIV)
: Montag, 2. November 2009 23:00 An: 'General discussion for Windows Installer XML toolset.' Betreff: Re: [WiX-users] Link error for dutil.lib Are you building 32-bit, or some flavor of 64-bit? -Original Message- From: Mike Carlson (DEV DIV) [mailto:mica...@microsoft.com] Sent: Monday

Re: [WiX-users] Link error for dutil.lib

2009-11-02 Thread Mike Carlson (DEV DIV)
Did you try a clean build? i.e. Delete your build output directory and build again. Thanks, Mike Carlson -Original Message- From: Jiang, Chunyan (GE Healthcare) [mailto:chunyan.ji...@ge.com] Sent: Monday, November 02, 2009 7:20 AM To: General discussion for Windows Installer XML

Re: [WiX-users] WiX and certificates

2009-10-05 Thread Mike Carlson (DEV DIV)
, or uninstall then install? Also, if you have a repro sample (with logs) using a dummy cert, that will help the investigation. Thanks, Mike Carlson -Original Message- From: phillip_sid...@dellteam.com [mailto:phillip_sid...@dellteam.com] Sent: Monday, October 05, 2009 8:06 AM To: wix-users

Re: [WiX-users] WiX and certificates

2009-10-01 Thread Mike Carlson (DEV DIV)
1) What version of WiX are you using? 2) What error message do you see in a verbose logfile in the event of failure? 3) Have you tried making the associated Component Permanent? Thanks, Mike Carlson -Original Message- From: phillip_sid...@dellteam.com [mailto:phillip_sid...@dellteam.com

Re: [WiX-users] WiX and certificates

2009-10-01 Thread Mike Carlson (DEV DIV)
. AddMachineCertificate: Error 0x80092004: Could not locate key pair from PFX file. AddMachineCertificate: Error 0x80092004: Failed to install certificate. AddMachineCertificate: Error 0x80092004: Failed to install per-machine certificate. - Phil -Original Message- From: Mike Carlson (DEV DIV

Re: [WiX-users] Square Brackets in a Custom Action

2009-09-30 Thread Mike Carlson (DEV DIV)
this yourself. Anyway, to answer your original question, try escaping them like this: [\[] (without quotes) for the open square bracket. [\]] (without quotes) for the ending square bracket. I believe this is the standard MSI way to escape these characters. Thanks, Mike Carlson

Re: [WiX-users] Failed while processing WebDirs

2009-09-02 Thread Mike Carlson (DEV DIV)
I am able to reproduce your failure - I haven't investigated in detail yet, but it could be a bug. Go ahead and file a bug on SF against WiX 3.5, and attach your repro authoring to the bug. Thanks, Mike Carlson -Original Message- From: Yan Sklyarenko [mailto:y...@sitecore.net] Sent

Re: [WiX-users] candle -arch

2009-09-02 Thread Mike Carlson (DEV DIV)
and search for currentplatform. Once you get past the initial few results (which are just common infrastructure), you'll see where it actually takes effect. Thanks, Mike Carlson -Original Message- From: Quinton Tormanen [mailto:quint...@deltacompsys.com] Sent: Wednesday, September 02, 2009 8:21

Re: [WiX-users] Failed while processing WebDirs

2009-09-01 Thread Mike Carlson (DEV DIV)
locator record, but the web locator couldn't find what it was looking for on the local machine. Thanks, Mike Carlson -Original Message- From: Yan Sklyarenko [mailto:y...@sitecore.net] Sent: Tuesday, September 01, 2009 7:25 AM To: General discussion for Windows Installer XML toolset. Subject

Re: [WiX-users] Problem while creating virtual directory

2009-08-28 Thread Mike Carlson (DEV DIV)
If you're using the visual studio UI for WiX (called Votive), you'll want to add a reference to WixIISExtension.dll, similar to the way you add references to assemblies in your C# projects. If you want general commandline help for the tools, either see the helpfile (wix.chm), or try running

Re: [WiX-users] Using WiX with .Net 4.0

2009-08-04 Thread Mike Carlson (DEV DIV)
- go ahead and file a bug on SF against 3.5. Thanks, Mike Carlson -Original Message- From: kevin_mitch...@agilent.com [mailto:kevin_mitch...@agilent.com] Sent: Tuesday, August 04, 2009 7:54 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Using WiX with .Net 4.0 I'm trying

Re: [WiX-users] What is wixca.dll?

2009-08-03 Thread Mike Carlson (DEV DIV)
It contains some of the WiX custom actions that, at install-time, do the work for most of the elements of the WixUtilExtension. Many of the other extensions have their own custom action DLLs. -Original Message- From: Sunkesula, Srivardhan [mailto:srivardhan.sunkes...@netapp.com] Sent:

Re: [WiX-users] Install pfx Certificate

2009-08-03 Thread Mike Carlson (DEV DIV)
Did you specify the correct Certificate/@PFXPassword attribute? Also, what build of WiX are you using? It's highly recommended to use WiX 3.0 RTM, as at least a few cert bugs existed in earlier 3.0 builds that were fixed in RTM. Thanks, Mike Carlson -Original Message- From: Reese

Re: [WiX-users] (no subject)

2009-07-29 Thread Mike Carlson (DEV DIV)
of the toolset are you using? Have you checked if the XML file it's trying to modify exists, etc.? Thanks, Mike Carlson -Original Message- From: Castro, Edwin G. (Hillsboro) [mailto:edwin.cas...@fiserv.com] Sent: Wednesday, July 29, 2009 4:17 PM To: General discussion for Windows Installer XML

Re: [WiX-users] Upgrading to WiX 3, CNDL0005 error.

2009-07-23 Thread Mike Carlson (DEV DIV)
According to wix.chm, File isn't a valid parent element for util:PerformanceCounter. It needs to be under a Util:PerformanceCategory element, which in turn needs to be under a Component element, not a File. See the CHM for more information. Thanks, Mike Carlson -Original Message- From

Re: [WiX-users] Can I convert from wixobj to wxs

2009-07-16 Thread Mike Carlson (DEV DIV)
I would link the .wixobj into your final output, then use dark and see what you get. The formatting will be completely different, but depending on how extensive your changes were, if you remember what you changed, you should be able to find the things you added or modified, copy them back to

Re: [WiX-users] Updating web.config field value depending on if machine's 64bit or 32bit

2009-07-13 Thread Mike Carlson (DEV DIV)
. Thanks, Mike Carlson -Original Message- From: Don Benson [mailto:dbenso...@gmail.com] Sent: Monday, July 13, 2009 11:53 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Updating web.config field value depending on if machine's 64bit or 32bit Windows

Re: [WiX-users] WiX 3.5.0626 missing VS2010 Project Types?

2009-07-09 Thread Mike Carlson (DEV DIV)
I think a bug is already filed for this (#2803058): http://sourceforge.net/tracker/?func=detailaid=2803058group_id=105970atid=642714 -Original Message- From: Bob Arnson [mailto:b...@joyofsetup.com] Sent: Thursday, July 09, 2009 6:26 PM To: General discussion for Windows Installer XML

Re: [WiX-users] WriteMetabaseChanges: Error 0x80070057: failed to create web application

2009-07-01 Thread Mike Carlson (DEV DIV)
A *lot* has changed in the IIS custom actions since WiX v3.0.4805, including an error that looks very similar to this. First, I would upgrade to the latest WiX 3.0 build (v3.0.5419) and see if you still have a problem after that. Thanks, Mike Carlson -Original Message- From: troy

Re: [WiX-users] WriteMetabaseChanges: Error 0x80070057: failed to create web application

2009-07-01 Thread Mike Carlson (DEV DIV)
). If you want the website to be created if it doesn't exist, the website must be associated with a component. Thanks, Mike Carlson -Original Message- From: troy hostetter [mailto:troy.hostet...@gmail.com] Sent: Wednesday, July 01, 2009 11:54 AM To: General discussion for Windows Installer

Re: [WiX-users] wix3_x64.msi

2009-06-30 Thread Mike Carlson (DEV DIV)
through the Wow64 API. Thanks, Mike Carlson -Original Message- From: John Robbins [mailto:j...@wintellect.com] Sent: Tuesday, June 30, 2009 10:04 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] wix3_x64.msi Doh! Yes, the CA's have x64 versions too

Re: [WiX-users] IIS6 error-Failed while processing WebVirtualDirs

2009-05-13 Thread Mike Carlson (DEV DIV)
with it failing to find the website it should install to. Try either: A) putting your website element inside of a component (so that the website will be created if it doesn't exist), or B) making sure the website it's searching for exists on the target machine before installation. Thanks, Mike Carlson

Re: [WiX-users] Make light.exe run faster.

2009-05-12 Thread Mike Carlson (DEV DIV)
Bob raises a good point. Actually, this is an even better reason to split your files up close-to-evenly into a few cabs. -Original Message- From: Bob Arnson [mailto:b...@joyofsetup.com] Sent: Monday, May 11, 2009 6:57 PM To: General discussion for Windows Installer XML toolset. Subject:

Re: [WiX-users] Make light.exe run faster.

2009-05-11 Thread Mike Carlson (DEV DIV)
your build time, you may be running into this issue. Thanks, Mike Carlson -Original Message- From: Mahmoud Hamad [mailto:m.n.ha...@hotmail.com] Sent: Monday, May 11, 2009 2:31 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Make light.exe run faster. Hi All, I have

Re: [WiX-users] property value passed to CA through ExecXmlFile property is not correct

2009-05-11 Thread Mike Carlson (DEV DIV)
An XmlFile entry will only get passed to ExecXmlFile if the component associated with it is being installed or uninstalled. Is the component associated with it being installed (or uninstalled)? Thanks, Mike Carlson -Original Message- From: Amy Rosewater [mailto:arosewa

Re: [WiX-users] Make light.exe run faster.

2009-05-11 Thread Mike Carlson (DEV DIV)
believe there is an automated way to do (unless you create your own program). Thanks, Mike Carlson -Original Message- From: Mahmoud Hamad [mailto:m.n.ha...@hotmail.com] Sent: Monday, May 11, 2009 3:41 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Make light.exe run

Re: [WiX-users] WriteMetabaseChanges: Error 0x80070057: failed to create web application: /Root/MyWebSite

2009-04-08 Thread Mike Carlson (DEV DIV)
for the voicewarmup regkey you need to set), and re-run the install. Writemetabasechanges should display more information in the log, which will help to diagnose the issue. 3) What OS are you installing the MSI on? This too can help diagnose the issue. Thanks, Mike Carlson -Original Message

Re: [WiX-users] Unable to remove website during uninstall

2009-04-06 Thread Mike Carlson (DEV DIV)
. Try to attach a minimal repro to the bug (authoring a logfile), as this will help me to reproduce the exact problem. Thanks, Mike Carlson -Original Message- From: Gang Cheng [mailto:gang.cheng...@gmail.com] Sent: Friday, April 03, 2009 6:04 PM To: wix-users@lists.sourceforge.net

Re: [WiX-users] Unable to remove website during uninstall

2009-04-03 Thread Mike Carlson (DEV DIV)
to the IIS's deferred custom action. Finally, what version of WiX are you using? Quite a lot of things have been fixed in the IIS custom action in just the past couple of months - you may want to try again with the latest weekly build to see if the problem still occurs. Thanks, Mike Carlson

Re: [WiX-users] Latest WiX v3.0.4909.0 and IIS on Windows 2003

2009-01-14 Thread Mike Carlson (DEV DIV)
extensions, and you've associated one or more of your IIS elements with a User. Thanks, Mike Carlson -Original Message- From: Rob Mensching [mailto:rob.mensch...@microsoft.com] Sent: Wednesday, January 14, 2009 9:18 AM To: General discussion for Windows Installer XML toolset. Subject: Re