[WiX-users] Speedup build process

2009-06-03 Thread sandun css
Hi, It takes around 30 minutes to build my msi. I learnt that it is possible to reduce the time by, - Increasing the cab files count. - lowering the compression ratio - removing ICE validation - reusing cabs I was able to increase the cab files count and lower the compression

[WiX-users] Problem with Shortcut

2009-06-03 Thread Rahul.Ekbote
Hi, I want to make shortcut of my application in start-programs. For this I written following code Directory Id=TARGETDIR Name=SourceDir Directory Id=ProgramFilesFolder Name=PFiles Directory Id=INSTALLDIR Name=ALM6 /Directory Directory

Re: [WiX-users] Speedup build process

2009-06-03 Thread David Watson
Hi, Isnt it -sval to suppress Ice validation. See mk:@MSITStore:C:\Program%20Files\Windows%20Installer%20XML%20v3\doc\WiX. chm::/html/light.htm for light options. Dave -Original Message- From: sandun css [mailto:sandun...@gmail.com] Sent: 03 June 2009 11:26 To:

[WiX-users] WiX 3.0: SQL Database being dropped on Rollback.

2009-06-03 Thread Jason Jibben
Hello WiX folks, I've recently upgraded a WiX 2.0 installer to WiX 3.0 and a new behavior started up. When I run into an error on install while it's running SQL scripts, it begins a rollback and attempts to drop the DB. Luckily for me, it threw you don't have permission errors that caught my

[WiX-users] application event logs

2009-06-03 Thread Thomas Svare
Hello, We're trying to track down a build hang issue and during the course of the investigation the application event logs have been reviewed. We're seeing information application events with each msi build (standard candle and light build) that states the following: Product: FileSearch

Re: [WiX-users] Problem with Shortcut

2009-06-03 Thread Alex Shevchuk
So I tried Property Id=StartinDir Value ='[INSTALLDIR]ALMGUI'/Property How can I set the directory [INSTALLDIR]ALMGUI to WorkingDirectory WorkingDirectory contains the name of the property that has the path. Try convert StartinDir to all uppercase and set Secure=yes, so that it can be passed

Re: [WiX-users] WiX 3.0: SQL Database being dropped on Rollback.

2009-06-03 Thread AG Crum
My understanding, this is the expected behavior. The component is being rolled back, so if the component created the database on install, and a rollback occurs, the database will be deleted to completely rollback the entire transaction. During an upgrade, you can't use that same sql:SqlDatabase

Re: [WiX-users] Issue resolving properties in the Office 2007 Customization Wizard

2009-06-03 Thread Rob Mensching
I do this all the time. Can you please provide more specific details about what you are doing. Also, look in a verbose log file, it'll probably show you the registry key and value and value of the Property. Success Systems wrote: I am trying to add a registry key that contains a property in

Re: [WiX-users] Assembly registration with wix 3.0

2009-06-03 Thread Rob Mensching
ComPlusAssembly is for COM+. If you don't know what that is, you definitely do not want to use it (COM+ is crazy). smile/ Can you be more specific about the heat error and the actual WiX toolset version you are using? Wayne Guidry wrote: Haven't used wix in a couple of months and just

Re: [WiX-users] application event logs

2009-06-03 Thread Rob Mensching
It's actually validation. Validation starts an instance of the MsiEngine so you get those useless events. Thomas Svare wrote: Hello, We're trying to track down a build hang issue and during the course of the investigation the application event logs have been reviewed. We're seeing

Re: [WiX-users] Problem with Shortcut

2009-06-03 Thread Rahul.Ekbote
Hi, Yes I tried to converting it into the uppercase but not work. It shows the value in shortcut property [INSTALLDIR]ALMGUI which is like hard code value. It not converts [INSTALLDIR] into D:\program files\... I want to concatenate the directory path. It works with INSTALLDIR but not with

Re: [WiX-users] Problem with Services

2009-06-03 Thread Wilson, Phil
Dependencies can be an issue at install time. If the service is dependent on: 1) An assembly being installed to the GAC or 2) C++ runtime support being installed at the same time with a merge module and you're on Vista or Server 2008 3) Any dependency that isn't actually present on a clean

Re: [WiX-users] Problem with merge module

2009-06-03 Thread Wilson, Phil
We're getting off track from the original question here. The original issue was basically the merge modules aren't being installed. My point here is that merge modules are not installed, the file content is installed. So does your question mean that the files in the merge module are not

[WiX-users] Before I go off and write a custom action...

2009-06-03 Thread David Bartmess
is there already a custom action that operates the net.exe command? I'm trying to run the following command, but if the user already exists in the localgroup, it errors out and the installation fails miserably. net localgroup IIS_WPG server\userid /ADD Has anyone ever encountered this? There's

Re: [WiX-users] Localization: Multiple cultures / Single MSI

2009-06-03 Thread James Lin
Please check out the following web page. This describes how to create multi-language msi packages without setup.exe launcher. http://www.installsite.org/pages/en/msi/articles/embeddedlang/index.htm You could try the following step The following is the steps. Please try the step 4 instead of

Re: [WiX-users] Before I go off and write a custom action...

2009-06-03 Thread David Bartmess
Yes, they work, but we have a customer request to allow inputting a user group and add that to the existing user group for permissions on a web site. AFAIK, Group elements can't contain GroupRef elements, so that the included GroupRef is added to the external Group. Maybe this should be an

Re: [WiX-users] Before I go off and write a custom action...

2009-06-03 Thread Rob Mensching
Ahh, groups to groups. Yeah, that's probably not supported yet. Does seem like a reasonable feature request. David Bartmess wrote: Yes, they work, but we have a customer request to allow inputting a user group and add that to the existing user group for permissions on a web site. AFAIK,

[WiX-users] Bug in Torch?

2009-06-03 Thread Gilad Israeli
Hello I was trying to create a single language msi (for English Japanese). Both compiled successfully with candle light but I ran into the following problem when I ran torch to get the difference between the msi files. Running torch with the following parameters: torch.exe -t language

Re: [WiX-users] Bug in Torch?

2009-06-03 Thread Rob Mensching
Never heard of it. Can you please post a bug and include all of the Property.idt files from the directories listed below. Gilad Israeli wrote: Hello I was trying to create a single language msi (for English Japanese). Both compiled successfully with candle light but I ran into the

Re: [WiX-users] Bug in Torch?

2009-06-03 Thread Gilad Israeli
Created bug # 2800797. I included all the files in the Binder Unbinder emporary directories -- Gilad -Original Message- From: Rob Mensching [mailto:r...@wixtoolset.org] Sent: June 3, 2009 6:05 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users]

Re: [WiX-users] Issue resolving properties in the Office 2007 Customization Wizard

2009-06-03 Thread Success Systems
Than ks for your reply. I am trying to set the following registry key: HKLM\Software\[COMPANYNAME]\Packages\[ProductName]\[ProductVersion] Value Name: Product Code Value Data: [ProductCode] The properties used in the Registry path resolve to the correct values, but the properties in the Value

[WiX-users] question about HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\[ProductCode]

2009-06-03 Thread Amy Rosewater
Hi All, I have a Wix (v 3.0.48130.0) installer which when I run it does NOT result in a registry key that I was expecting. The key is the infamous HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\[ProductCode] key. Does anyone know why running an installer msi would result it not

[WiX-users] Can I modify version info of setup bootstrapper?

2009-06-03 Thread xubutian
The default WIX setupexe contains version info something like Microsoft, XML Installer ... I hope change these strings to some meaningful info, like the product description to my product's name. Is it legal to do this? Thanks! -- View this message in context:

Re: [WiX-users] Assembly registration with wix 3.0

2009-06-03 Thread Wayne Guidry
I'm using the latest build of WIX v3.0.5217.0. here's the background info on what I'm trying to do... I have a .NET 2.0 Assembly that has register for COM interop selected and I need to build an installer package that performs the capability of registering the Assembly with COM so it can be

Re: [WiX-users] Can I modify version info of setup bootstrapper?

2009-06-03 Thread Brian Rogers
The source code is publicly available. Once you download it you can change the strings and recompile. Brian Rogers Intelligence removes complexity. - Me http://icumove.spaces.live.com On Wed, Jun 3, 2009 at 3:52 PM, xubutian xubut...@hotmail.com wrote: The default WIX setupexe contains

Re: [WiX-users] Can I modify version info of setup bootstrapper?

2009-06-03 Thread Bob Arnson
xubutian wrote: I hope change these strings to some meaningful info, like the product description to my product's name. Is it legal to do this? You're asking a legal question, which most developers aren't qualified to answer. Look at the license under which you acquired WiX and bring it

Re: [WiX-users] Purely Wix Admin based patch not replacing all files

2009-06-03 Thread Bob Arnson
Shawn Dwyer wrote: below. In the example, NewFile.exe and NewFile.exe.config are both in the same Component, where NewFile.exe is the keyfile being upgraded from 3.0.37 to 3.0.38, and NewFile.exe.config has new content but obviously no version number. The results I am seeing is that

Re: [WiX-users] WiX 3.0: How to change an existing Windows service's startup type

2009-06-03 Thread Bob Arnson
Christopher Painter wrote: I'm sorry for the short message with vague context. Yes, service dependencies. Basically it's a product line chainer with use cases that involve different sets of third party packages for different products where development wants the service dependencies set

Re: [WiX-users] Problem with Shortcut

2009-06-03 Thread Bob Arnson
rahul.ekb...@sungard.com wrote: Shortcut Id=ApplicationStartMenuShortcut Name=Bancware ALM 6.0 Description=Bancware ALM 6.0 Target=[INSTALLDIR]ALMGUI\bwr.ALM.exe WorkingDirectory=[INSTALLDIR]ALMGUI / However I am facing problem

Re: [WiX-users] question about HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\[ProductCode]

2009-06-03 Thread Bob Arnson
Amy Rosewater wrote: I have a Wix (v 3.0.48130.0) installer which when I run it does NOT result in a registry key that I was expecting. The key is the infamous HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\[ProductCode] key. Does anyone know why running an installer msi would

Re: [WiX-users] Speedup build process

2009-06-03 Thread Bob Arnson
sandun css wrote: But I am not sure how to pass arguments to light to stop ICE validation and reuse cabs. (I am using msbuild.) See Light Task in WiX.chm. According to my understanding it is not possible to create these cab files using some other tool and attach to the msi. Is that

Re: [WiX-users] questionabout HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\[ProductCode]

2009-06-03 Thread Amy Rosewater
Bob, I thought of that and checked. The InstallScope attribute is set to perMachine. Amy -Original Message- From: Bob Arnson [mailto:b...@joyofsetup.com] Sent: Wednesday, June 03, 2009 7:58 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users]

Re: [WiX-users] Bug in Torch?

2009-06-03 Thread Heath Stewart
Gilad, could you detail what the database code pages are set to? From the Windows Installer SDK, you can use msiinfo /d *msifilename* to retrieve the database code page (note this is not the same as the summary information code page). Or if you can reproduce a small issues I would like to review

Re: [WiX-users] Wix Property calculation

2009-06-03 Thread Jason Zhang
Thanks. That really help! I created an vbscript to handle this case. --Jason -- Message: 2 Date: Tue, 2 Jun 2009 17:01:55 -0700 From: Rob Mensching r...@wixtoolset.org Subject: Re: [WiX-users] Wix Property calculation To: General discussion for Windows Installer XML

[WiX-users] component and guid

2009-06-03 Thread Jason Zhang
As a beginner, although I already read through the wix tutorial, still have some questions on guid attribute on component element: 1. same guid in different product: if I accidentally copied a guid from a component in product A to another component in product B. What happened if I install

Re: [WiX-users] Purely Wix Admin based patch not replacing all files

2009-06-03 Thread Shawn Dwyer
Bob Arnson wrote: check out the PatchFiles action to see what MSI actually does. Thanks Bob. I couldn't seem to find a PatchFiles action in the log though, so perhaps that is the problem. Using Orca I applied my patch to the MSI and I don't see a PatchFiles in the

Re: [WiX-users] Problem with Shortcut

2009-06-03 Thread Rahul.Ekbote
Hi, No still it not works. If I gives the ID of ALMGUI directory it takes only the name of that directory but not conatnate with the INSTALLDIR. I want full path of that directory. Thanks, Rahul. From: Bob Arnson [mailto:b...@joyofsetup.com] Sent: Wed