Re: [WiX-users] Heat - Include question

2013-05-28 Thread Mike Carlson
ne’ > and ‘Administrators’ may be entered in English and are mapped to > well-known SIDs.” 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 : >

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 MSI

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 num

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 make

Re: [WiX-users] Heat - Include question

2013-05-21 Thread Mike Carlson
d version to be uninstalled as part of installing the new version. Or you might want to explore "Minor Upgrades" which are slightly lighter weight: http://msdn.microsoft.com/en-us/library/windows/desktop/aa370037(v=vs.85).aspx . On Tue, May 21, 2013 at 9:34 AM, BGINFO4X wrote:

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 wrote: > > You should change it to this: > > > > > >

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 j

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: You should change it to this: Also, you should pass in "-srd" on the heat commandline (suggestion #3 above), or e

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,

Re: [WiX-users] Help related to AppPool

2010-06-09 Thread Mike Carlson (DEV DIV)
xist when something needed 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

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

2010-05-06 Thread Mike Carlson (DEV DIV)
figuration file. The two Web.config files are both for IIS7. 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 toolse

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

2010-05-06 Thread Mike Carlson (DEV DIV)
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 To: General discuss

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 Sleighthol

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 Ca

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 lis

Re: [WiX-users] 64-bit WiX

2010-04-20 Thread Mike Carlson (DEV DIV)
Please file a bug for this, if you haven't already. Thanks, Mike Carlson -Original Message- From: Navid Azimi-Garakani [mailto:naz...@microsoft.com] Sent: Monday, April 19, 2010 4:14 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] 64-bit WiX T

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

2010-04-19 Thread Mike Carlson (DEV DIV)
ignia, and it will update your MSI 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 -Orig

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

2010-04-13 Thread Mike Carlson (DEV DIV)
tool called "Insignia" to make this process 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 Win

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

2010-04-01 Thread Mike Carlson (DEV DIV)
nd I made it to be executed after ConfigureIIs (in Wix 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 Mess

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)
s before about the same thing: http://sourceforge.net/tracker/?func=detail&aid=2961215&group_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:m

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-

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) [mailto:wpmccorm...@ace-c

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 non

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 into is that i

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 "[\]]" T

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

2010-03-16 Thread Mike Carlson (DEV DIV)
DirProperties is part of IIS, etc. Then during both compile and link, you need to reference the right extension too when compiling, like: Candle -ext wixutilextension file.wxs Light -ext wixutilextension file.wixobj Hopefully you get the idea. Thanks, Mike Carlson -Origin

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

2010-03-16 Thread Mike Carlson (DEV DIV)
om: Navid Azimi-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 followin

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

2010-03-15 Thread Mike Carlson (DEV DIV)
't require 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.ne

Re: [WiX-users] Trying to download latest WiX 3.5 drop

2010-03-12 Thread Mike Carlson (DEV DIV)
I can't help with the CVS issues, but to download the latest official build of 3.5, you want the "weekly releases" page, linked from wix.sf.net. The direct link to weekly releases page is here: http://wix.sourceforge.net/releases/ Thanks, Mike Carlson -Original Message-

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 Ca

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: Thanks, Mike Carlson -Original Message-

Re: [WiX-users] Interrupting a WiX build

2010-02-10 Thread Mike Carlson (DEV DIV)
checks for the cancel between each file. - Original Message - From: Mike Carlson (DEV DIV) To: General discussion for Windows Installer XML toolset. 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: [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 / V

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

2010-01-29 Thread Mike Carlson (DEV DIV)
ow 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: Frida

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

2010-01-28 Thread Mike Carlson (DEV DIV)
as much repro information as you 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 install

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

2010-01-27 Thread Mike Carlson (DEV DIV)
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, Mi

Re: [WiX-users] unexplained Custom Action failure

2010-01-07 Thread Mike Carlson (DEV DIV)
esign 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...@delltea

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 [mailto:jk...@commondes

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...@neural

Re: [WiX-users] Build speedup

2009-11-04 Thread Mike Carlson (DEV DIV)
en let it be a cab external to the MSI (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: Wednesda

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

2009-11-03 Thread Mike Carlson (DEV DIV)
- Von: Blair [mailto:os...@live.com] Gesendet: 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

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)
you referring to a repair scenario, 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...@dellte

Re: [WiX-users] WiX and certificates

2009-10-01 Thread Mike Carlson (DEV DIV)
erver. 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 (DE

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] Square Brackets in a Custom Action

2009-09-30 Thread Mike Carlson (DEV DIV)
e to do things like 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 e

Re: [WiX-users] candle -arch

2009-09-02 Thread Mike Carlson (DEV DIV)
\wix\compiler.cs 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] Se

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]

Re: [WiX-users] Failed while processing WebDirs

2009-09-01 Thread Mike Carlson (DEV DIV)
apped in a component. Please, let me know if the snippet above doesn't contain what you were asking for. NOTE: it is reproduced when I'm creating a new site. If a user chooses to use existent site, everything goes fine. Thank you! -- Yan -Original Message- From: Mike Carlson (D

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. Su

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 the

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

2009-08-04 Thread Mike Carlson (DEV DIV)
erence, and sounds like a bug - 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 Wi

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:

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: Su

Re: [WiX-users] (no subject)

2009-07-29 Thread Mike Carlson (DEV DIV)
ine. What version 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 discus

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-

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 th

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

2009-07-13 Thread Mike Carlson (DEV DIV)
mmend it at this point in time. 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 mac

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=detail&aid=2803058&group_id=105970&atid=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] WiX 3.5.0626 missing VS2010 Project Types?

2009-07-06 Thread Mike Carlson (DEV DIV)
Were you by chance using Visual Studio 2010? Votive2010 was inadvertently removed for a few builds, but the issue has since been fixed, and votive2010 should be back in the MSI with the latest 3.5 build (3.5.0704.0). Thanks, Mike Carlson -Original Message- From: Rob Mensching [mailto:r

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

2009-07-02 Thread Mike Carlson (DEV DIV)
Make sure the IP, Port and Header all exactly match the website on the machine. These are the 3 things we use to determine if we've found the right website or not. Thanks, Mike Carlson -Original Message- From: troy hostetter [mailto:troy.hostet...@gmail.com] Sent: Wednesday, Ju

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

2009-07-01 Thread Mike Carlson (DEV DIV)
d to fail). 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 f

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] wix3_x64.msi

2009-06-30 Thread Mike Carlson (DEV DIV)
arios 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 ve

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

2009-05-13 Thread Mike Carlson (DEV DIV)
r consistent 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 insta

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)
y, then I don't 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

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)
o multiple CABs noticeably quickens 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

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

2009-04-08 Thread Mike Carlson (DEV DIV)
r 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 -O

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

2009-04-06 Thread Mike Carlson (DEV DIV)
file a bug. 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.s

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

2009-04-03 Thread Mike Carlson (DEV DIV)
hould display any warnings / errors specific 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 pro

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

2009-01-14 Thread Mike Carlson (DEV DIV)
e using both IIS and Util 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 Inst