Re: [WiX-users] Queries on Upgrade

2014-04-25 Thread Gabriel Ivanes
Search for the productcode. -- Sincerely, Gabriel -- Start Your Social Network Today - Download eXo Platform Build your Enterprise Intranet with eXo Platform Software Java Based Open Source Intranet - Social, Extensible, C

Re: [WiX-users] Queries on Upgrade

2014-04-24 Thread Gabriel Ivanes
SameVersionUpgrades ="yes". Can you please explain about 1st point? Thanks for your reply. Aparna Karkare L&T Infotech OAI-sys, Enterprise Components and Frameworks Office: 020-6641-6142 Email: [1]akark...@travelers.com -----Original Message- From: Gabriel Iva

Re: [WiX-users] Queries on Upgrade

2014-04-24 Thread Gabriel Ivanes
Good day, 1. What's your installation context ? User or Machine ? 2. Your condition seem ok if UPGRADINGPRODUCTCODE is the right property. 3. What's your need ? Check your msi with [1]InstEd. It's always instructive. Le Jeu 24 Avril 2014, à 12:37, Karkare,Aparna a écrit : Hello,

Re: [WiX-users] Run external Exe on Install

2014-03-21 Thread Gabriel Ivanes
Depending if you want a Bundle : [1]http://wixtoolset.org/documentation/manual/v3/xsd/wix/exepackage.htm l Or an MSI : [2]http://wixtoolset.org/documentation/manual/v3/xsd/wix/customaction.h tml Le Ven 21 Mars 2014, à 17:56, Hoover, Jacob a écrit : Burn, running an EXE installer (whi

Re: [WiX-users] Burn : MSP and Installcondition

2014-03-18 Thread Gabriel Ivanes
27;t understand why Installcondition and code below don't work. Le Mar 18 Mars 2014, à 11:16, Gabriel Ivanes a écrit : Hi guys, Here is my problem : ... ... I want it to be installed for x64 platform. But here is the log :

[WiX-users] Burn : MSP and Installcondition

2014-03-18 Thread Gabriel Ivanes
Hi guys, Here is my problem : ... ... I want it to be installed for x64 platform. But here is the log : ... Condition 'VersionNT64' evaluates to true. ... Planned package: Lync_msp_2737155_x64, state: Absent, default requested: Present, ba requested: Pr

Re: [WiX-users] Extract Binary file from MSI to Temp folder using C#

2013-09-03 Thread Gabriel Ivanes
You may want a complete example : ... Dim TempFolder : TempFolder = Session.Property("TempFolder") Dim SFolder : SFolder = Session.Property("SystemFolder") '** Début du main ** ExtractBina

Re: [WiX-users] Extract Binary file from MSI to Temp folder using C#

2013-09-02 Thread Gabriel Ivanes
Hello, An example function in vbscript : Function ExtractBinary(BinaryName, OutputFile) Const msiReadStreamAnsi = 2 Dim oDatabase Set oDatabase = Session.Database Dim View Set View = oDatabase.OpenView("SELECT * FROM Binary WHERE Name = '" & BinaryName & "'") Vie

Re: [WiX-users] MsiPackage InstallCondition

2013-07-11 Thread Gabriel Ivanes
Tim, LANG is just a burn's parameter i choose sets in installation's command line. My need was to get logonuser's language not UserLanguageID (installation is in system context) But custom actions are not possible in Burn and i usually need a script to know which user (hkusers\sid) to look for.

Re: [WiX-users] Change content of Config file after installation

2013-04-04 Thread Gabriel Ivanes
My 2 cents, a vbscript's function : ' Prerequisites ' Proprierty FILE : File Path + Its name ' Propriété LINE : what you want to replace ' Propriété REG_EXP : Reg exp to identify what you want to be replaced ' Theses 3 properties are passed throught CustomActionData's property. ' Sub Sb_Fi

Re: [WiX-users] Heat, XSLT, and Difxapp

2013-03-27 Thread Gabriel Ivanes
I change my mind. Hardcored oemsetup.inf in global wxs with difxapp:driver. Then, heat harvest driver's file and exclude oemsetup.inf. Obvious. Le %:Date:, Gabriel Ivanes <[1]g...@fastmail.net> a écrit: Hi there, I want to automat heat with difxapp. I use heat this way :

[WiX-users] Heat, XSLT, and Difxapp

2013-03-26 Thread Gabriel Ivanes
Hi there, I want to automat heat with difxapp. I use heat this way : heat dir .\Sources -cg cmp_files_driver_x86 -dr TARGETDIR -gg -ke -out Projet\Files_driver.wxs -var var.Sources = ".\Sources" -t Build\Set_difxapp_to_inf.xsl. But XSLT failed because i don't know it well. First, i want

Re: [WiX-users] Is there the way to pass installed product path to the major upgrade installer

2013-03-26 Thread Gabriel Ivanes
Set Property and Set Directory are 2 different kind of custom action : [1]http://blogs.technet.com/b/alexshev/archive/2008/02/21/from-msi-to-w ix-part-5-custom-actions.aspx Le %:Date:, AK <[2]kisslo...@gmail.com> a écrit: Hi! I need to save install directory during major upgrade. To do this I

Re: [WiX-users] Noobie Help

2013-03-08 Thread Gabriel Ivanes
Hi, Here is a sample : Le %:Date:, Jack

Re: [WiX-users] acces hklm from a current user installer

2013-03-08 Thread Gabriel Ivanes
Hi, You're sure your key and value exist ? To me -2147287038 means : not exist Le %:Date:, Sean Farrow a écrit: > Hi, > I need to access the hklm key from a per-user install from a registry > search element > My property looks like: > > > > > > The log looks a follows:

Re: [WiX-users] Using Product Id="*"

2013-02-22 Thread Gabriel Ivanes
Gary, Why not translate your powershell's script and your product's installation in one msi ? Le %:Date:, Gary Ewan Park a écrit: > Hey, > > Thanks for replying! > > Perhaps I should provide some more information... > > I am helping out with creating an OSS project called ChocolateyGUI. This

[WiX-users] CustomAction : FirstSequence/Rollback, OncePerProcess/Commit

2013-02-21 Thread Gabriel Ivanes
Hello, Anyone knows why does the bit FirstSequence automatically set Rollback's bit ? The same with OncePerProcess and Commit. I made an immediat custom action with FirstSequence but i don't want rollback's bit. No problem in execution, but i'm just curious why. Thanks. --

Re: [WiX-users] Using Product Id="*"

2013-02-21 Thread Gabriel Ivanes
Hello, If you plan an upgrade, why do you need ProductCode of the previous version ? Le %:Date:, Gary Ewan Park a écrit: > Hello, > > I am still quite new to WiX, so please bear with me... > > I have implemented the following pattern: > > http://wix.sourceforge.net/manual-wix3/major_upgrade.h

Re: [WiX-users] InstallUISequence

2013-02-20 Thread Gabriel Ivanes
Like a condition ? : USRCONCERNED = "YES" Le %:Date:, "Joseph, Sijo" a écrit: > Hi All, > > Is there any property can be set in "InstallUISequence" to display a > custom dialog while the msi is installing. > > I can

Re: [WiX-users] Running an MSI a second time to install more features or uninstall an already installed feature (while keeping others)

2013-02-15 Thread Gabriel Ivanes
EnableFeatureSelection="yes". > > > On Fri, Feb 15, 2013 at 6:21 AM, Gabriel Ivanes wrote: > > > You could pass ADDLOCAL parameter to your Bootstrapper with different > > value in install and repair. > > > > > > .. > > > > .. >

Re: [WiX-users] Running an MSI a second time to install more features or uninstall an already installed feature (while keeping others)

2013-02-15 Thread Gabriel Ivanes
You could pass ADDLOCAL parameter to your Bootstrapper with different value in install and repair. .. .. Le %:Date:, Gabriel Ivanes a écrit: > OK. Bootstrapper allow repair command. > > Le %:Date:, Hans ter Horst a écrit: > > Ah, sorry, I meant when running the M

Re: [WiX-users] Running an MSI a second time to install more features or uninstall an already installed feature (while keeping others)

2013-02-15 Thread Gabriel Ivanes
OK. Bootstrapper allow repair command. Le %:Date:, Hans ter Horst a écrit: > Ah, sorry, I meant when running the MSI via the burn bootstrapper. I have > the MSI working like I want but I do run my MSI with user interface from > the Bun bootstrapper, but when I run the bootstrapper a 2nd time, I o

Re: [WiX-users] Running an MSI a second time to install more features or uninstall an already installed feature (while keeping others)

2013-02-15 Thread Gabriel Ivanes
Good day, I had this required. I used transitive components. You could try ADDLOCAL property. Dunno know if it's available during msi repair. Le %:Date:, Hans ter Horst a écrit: > Hi, > I have a feature tree based installer that has 4 features. If I install > during a first phase, for example,

Re: [WiX-users] [Wix-users] XSLT

2013-02-12 Thread Gabriel Ivanes
select="."/> > select="'C:\windows\system32'" /> > select="'[SystemFolder]'"/> > > >

Re: [WiX-users] [Wix-users] XSLT

2013-02-11 Thread Gabriel Ivanes
xmlns:wix="http://schemas.microsoft.com/wix/2006/wi"; > exclude-result-prefixes="msxsl wix"> > > /> > > > > > > > > > >From there, it's up to you to determine which element's you want to change. > >If you wanted to tweak

[WiX-users] [Wix-users] XSLT

2013-02-11 Thread Gabriel Ivanes
Good day, Any good tutorial to use xsl with wix ? For example, replacing "C:\windows\system32" with [SystemFolder] in a reg's file with heat. Thanks. -- Sincerely, Gabriel "I know no way of judging the future but by the past." Patrick Henry "You can never plan the future by the past."

Re: [WiX-users] Heat-harvesting with subfolder in the -Source atribute

2013-02-06 Thread Gabriel Ivanes
Hi, And with this : *heat.exe dir "$(SolutionDir)MyProject" -ag -sfrag -srd -var "var.MyProject.ProjectDir" -out $(ProjectDir)HarvestedFiles.wxs"* Or you could add a subdir "Sources" in your SolutionDir : C:\\SolutionDir\MyProject\Sources\MyDirectory *heat.exe dir "$(SolutionDir)MyProject

Re: [WiX-users] Related to Sequences

2013-01-23 Thread Gabriel Ivanes
[TestReg]tab.reg => [INSTALLFOLDER]tab.reg INSTALLFOLDER shouldn't be empty to be created or you need to use CreateFolder's table (http://wix.tramontana.co.hu/tutorial/com-expression-syntax-miscellanea/creating-directories) Any need to import reg.exe in binary table ? Why not using CA 34 ? (http:

Re: [WiX-users] Export-Import registry

2013-01-22 Thread Gabriel Ivanes
If you want to export registry's keys, you could use "reg export". Not with Wix. Le Mar 22 Janvier 2013, à 10:49, Karkare,Aparna a écrit : > Can registry values be exported too in .reg file? > > Regards, > > Aparna Karkare > > > -----Original Messag

Re: [WiX-users] Export-Import registry

2013-01-22 Thread Gabriel Ivanes
You can import a reg file, into a fragment, with heat : http://wix.sourceforge.net/manual-wix3/heat.htm Le Mar 22 Janvier 2013, à 9:49, Karkare,Aparna a écrit : > Hi, > > Can we export the registry values, save the .reg file in install folder > and merge it back using WiX? > e.g. a particular pat

Re: [WiX-users] Export-Import registry

2013-01-22 Thread Gabriel Ivanes
You can import a reg file, into a fragment, with heat : http://wix.sourceforge.net/manual-wix3/heat.htm Le Mar 22 Janvier 2013, à 9:49, Karkare,Aparna a écrit : > Hi, > > Can we export the registry values, save the .reg file in install folder > and merge it back using WiX? > e.g. a particular pat

Re: [WiX-users] MsiPackage InstallCondition

2013-01-10 Thread Gabriel Ivanes
Hello, - Here are Burn Built-in Variables : http://wix.sourceforge.net/manual-wix3/bundle_built_in_variables.htm - You can also use burn's arguments. : ... I've got two msi packages in a wix bundle. I want to install one on x86 > platform and the other in case o

Re: [WiX-users] [Wix-users] Burn and RegistrySearch

2012-12-29 Thread Gabriel Ivanes
For permission's purpose. Le Sam 29 Décembre 2012, à 22:49, Rob Mensching a écrit : > Why is your bootstrapper installing in the system context? > > > On Sat, Dec 29, 2012 at 10:56 AM, Gabriel Ivanes > wrote: > > > Ok. So here a more complete explanation. Be clem

Re: [WiX-users] [Wix-users] Burn and RegistrySearch

2012-12-29 Thread Gabriel Ivanes
g a écrit : > I'm not sure I understood the original requirement completely, but if you > wanted the user language in the Bundle, would the UserLanguageID variable > have worked? > > > On Thu, Dec 27, 2012 at 12:29 AM, Gabriel Ivanes > wrote: > > > Finally, I us

Re: [WiX-users] [Wix-users] Burn and RegistrySearch

2012-12-27 Thread Gabriel Ivanes
Finally, I used an MST, a launchcondition and with vital=no. -- "I know no way of judging the future but by the past." Patrick Henry "You can never plan the future by the past." Edmund Burke -- Master Visual St

[WiX-users] [Wix-users] Burn and RegistrySearch

2012-12-24 Thread Gabriel Ivanes
Hello guys, I decided to use burn to bundle TortoiseSVN and its LanguagePack (only for french). We're using SCCM2012 with per-machine installation in system context. The language of the user is the result of 2 registry keys : HKEY_CURRENT_USER\Control Panel\Desktop\PreferredUILanguages if the use