[WiX-users] Conditional Components based on OS ?

2011-12-08 Thread Michael Tissington
I have four components XP, XP64, Vista32+ and Vista64+ How can I create conditions for these components? -- Cloud Services Checklist: Pricing and Packaging Optimization This white paper is intended to serve as a referenc

[WiX-users] xp auto start pre installed service

2011-12-05 Thread Michael Tissington
How can I change the settings of a service to automatically start as part of my installation. The service is question is wzcsvc and is preinstalled with Windows XP Thanks -- All the data continuously generated in your I

Re: [WiX-users] 32 bit install with BOTH 64 and 32 bit drivers?

2011-11-25 Thread Michael Tissington
Looking a bit more at installing drivers .. I have a utility (both a 64bit and a 32bit version) that runs and does the install of the respective driver. My msi can install the files for all versions of the required drives into respective folders. My question is can a 32 bit Install launch a 64bi

[WiX-users] 32 bit install with BOTH 64 and 32 bit drivers?

2011-11-22 Thread Michael Tissington
Is it possible to have a single 32 bit install that installs both a 64 bit and 32 bit driver? How can I do this? Also when can I find docs for installing a driver with Wix ? Many thanks, Michael Tissington -- All the

[WiX-users] Keep file on Upgrade?

2011-10-31 Thread Michael Tissington
I have a text file that has been modified in a folder under ProgramData. When doing an upgrade I need to keep the file If the file exists I'd like to take a copy of it to a temp location, Perform the upgrade and then copy the file back. How can I do this? --

[WiX-users] Feature Condition in UI

2011-09-30 Thread Michael Tissington
I'm trying to launch an installed exe when the user clicks Exit, so I have the following but it NEVER launches the exe. What am I missing? (!MyFeature = 3) AND NOT (ACTION = "ADMIN") -- All of the data generated in your

[WiX-users] Patch no patching

2011-09-29 Thread Michael Tissington
I have successfully created a patch and msimsp detects the changed files. However the only way I seem to be able to get the files to install is by running the patch with REINSTALL=ALL which is not good because that seems to force a reboot. All the modified files are key files. What do I need to d

Re: [WiX-users] Update Registry with Patch

2011-09-22 Thread Michael Tissington
oduct and increment the build number of the exe's version resource in each build. That way the registry key and the file key path would be rewritten during an update. This is assuming you can't read the version number from the msi using msigetproductinfo() for some reason. -

[WiX-users] Update Registry with Patch

2011-09-22 Thread Michael Tissington
In my Wix file I have a component with a file as the key path and then various registry keys, one write the version number. When I create a patch, the file may not have changed but I still need to update the version number in the registry. How can I do this - I know if my install package is corre

[WiX-users] uninstalling a patch

2011-09-15 Thread Michael Tissington
How can I run a custom action at the end of uninstalling a patch? -- Doing More with Less: The Next Generation Virtual Desktop What are the key obstacles that have prevented many mid-market businesses from deploying virt

[WiX-users] patch not patching registry

2011-09-15 Thread Michael Tissington
I have created a patch based on two admin installs using candle, light and msimsp. In the install I write the version number to a specified registry location. However when I apply the patch, it is not updating the registry to the new value. How do I make a patch that also applies any registry

Re: [WiX-users] ClickThrough

2011-09-09 Thread Michael Tissington
Yes, automatic updates are required happy to code against a 3rd party api. Written in c++ and atl -Original Message- From: Alec Taylor [mailto:alec.tayl...@gmail.com] Sent: 08 September 2011 15:32 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Clic

[WiX-users] How to manage the following build process?

2011-09-08 Thread Michael Tissington
I'm needing help trying to build an automated process for the following. 1) Each customer has many clients 2) Same binaries 3) Support for multiple languages 4) msi needs to be branded with customers logos and license agreement 5) Some help files and configuration files are specific to each custom

[WiX-users] ClickThrough

2011-09-08 Thread Michael Tissington
Is ClickThrough still being developed ? What other options are there for managing (and tracking) automatic updates? I've tried FlexNet but it seems to be full of holes. Thanks. -- Doing More with Less: The Next Generat

[WiX-users] Custom action if existing file exists

2011-08-23 Thread Michael Tissington
How can I run a custom action ONLY if the exe already exists on the client? -- Get a FREE DOWNLOAD! and learn more about uberSVN rich system, user administration capabilities and model configuration. Take the hassle out

Re: [WiX-users] Setting the WorkingDirectory of a shortcut to a per-user location

2011-08-12 Thread Michael Tissington
In the install set a registry key to point to the working directory In the code read the registry and then make an api call to set the current directory Michael Tissington -Original Message- From: John Daintree [mailto:jo...@dyalog.com] Sent: 12 August 2011 08:30 To: 'General discu

[WiX-users] generate log file on repair

2011-06-21 Thread Michael Tissington
I have a Wix install (exe) which always generates a log file in the users %temp% What do I need to do to ensure a log file is generated with the User clicks on Repair from Control Panel (Add/Remove or Programs and Features) ? Thanks.

Re: [WiX-users] Help with giving permissions to folder

2011-06-15 Thread Michael Tissington
This is what I do Along with SIDLookup merge module so that the all the well know SIDs language natural -- EditLive Enterprise is the world's most technically advanced content authoring too

Re: [WiX-users] Upgrade and Shortcut names

2011-05-09 Thread Michael Tissington
e new installer. -Original Message- From: Michael Tissington [mailto:michael_tissing...@ciqual.com] Sent: 09 May 2011 14:00 To: 'General discussion for Windows Installer XML toolset.' Subject: [WiX-users] Upgrade and Shortcut names I'm having a problem when performing an upgrade and

[WiX-users] Upgrade and Shortcut names

2011-05-09 Thread Michael Tissington
I'm having a problem when performing an upgrade and the shortcut name has changed. I have scheduled RemoveExistingProducts to before InstallFinalize. In the upgrade install I have changed the names of the shortcuts. The problem is when I do the upgrade the old shortcuts are not removed,

[WiX-users] pyro error - empty cab file PYR01079

2011-05-04 Thread Michael Tissington
I'm trying to create a very simple path - simply changing the contents of a html file I have both old and new msi and wixpdb files If do an install of the old and then upgrade to the new.msi the old and new html files are correct in each case so I know my msi files are correct. I run the followi

[WiX-users] Patches and locale transforms

2011-05-02 Thread Michael Tissington
I'm trying to get my head around creating a patch. I have built an msi that supports different locals by embedding locale transforms into the single msi. Given this msi, what are the steps to create the patch? Can I still use the wixpdbs for each language and if so how? Or do I have to work with

Re: [WiX-users] MSVC problem on Vista (no SP)

2011-04-20 Thread Michael Tissington
[mailto:jfarr...@pillardata.com] Sent: 19 April 2011 23:14 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] MSVC problem on Vista (no SP) You'd perhaps get a more useful answer if you told us what the problem is. > From: Michael Tissington [mailto:michael

[WiX-users] MSVC problem on Vista (no SP)

2011-04-19 Thread Michael Tissington
I have a problem when doing a major upgrade on Vista (no service pack) My install is using both MSVC 9.0 and 10.0 merge modules. The first time my install runs it does install MSVC without any problems. My upgrade package does a RemoveExistingProducts and then installs itself. The problem is ONLY

[WiX-users] Files In Use Problem

2011-04-15 Thread Michael Tissington
I have a problem with an upgrade from an Install Shield package to a Wix package Both packages install the FlexNet product from InstallShield and the update (major upgrade) Wix package is pushed to the client using the installed FlexNet. The Wix upgrade does a RemoveExistingProducts and correctly

Re: [WiX-users] XP Install as admin

2011-04-12 Thread Michael Tissington
;run as" window? -Original Message- From: Michael Tissington Sent: Tuesday, April 12, 2011 11:39 AM To: 'General discussion for Windows Installer XML toolset.' Subject: [WiX-users] XP Install as admin I'm a little confused ... I have seen some installs running on an XP box

[WiX-users] XP Install as admin

2011-04-12 Thread Michael Tissington
I'm a little confused ... I have seen some installs running on an XP box as a regular user display a dialog that prompts for admin user credentials to run the install as an admin user. How is this achieved? -- Forrester

Re: [WiX-users] Supporting downgrades with Key paths

2011-04-11 Thread Michael Tissington
during your upgrade. Replacement of files in use requires a reboot. -Original Message- From: Michael Tissington [mailto:michael_tissing...@ciqual.com] Sent: Monday, April 11, 2011 4:18 PM To: 'General discussion for Windows Installer XML toolset.' Subject: Re: [WiX-users] Supporting

Re: [WiX-users] Supporting downgrades with Key paths

2011-04-11 Thread Michael Tissington
users@lists.sourceforge.net Subject: Re: [WiX-users] Supporting downgrades with Key paths You can change REINSTALLMODE to always reinstall files during upgrade. -Original Message- From: Michael Tissington [mailto:michael_tissing...@ciqual.com] Sent: Monday, April 11, 2011 3:39 PM To: 'General disc

[WiX-users] Supporting downgrades with Key paths

2011-04-11 Thread Michael Tissington
I have a problem with downgrades. I have RemoveExistingProducts scheduled before InstallInitialize. I have a component with the keypath set to a file (.exe) When I downgrade the version number of the exe is older so the install marks the component as not valid for install because a latter versio

[WiX-users] Add Update Dialog

2011-04-08 Thread Michael Tissington
tarts the standard msi dialogs If they press No, it exits. Is this possible? Thanks, Michael Tissington http://oaklodge.com -- Xperia(TM) PLAY It's a major breakthrough. An authentic gaming smartphone on the nat

[WiX-users] ICE03 and version number

2011-04-06 Thread Michael Tissington
My understanding is that the 4th position in the version number is not used by anything when checking version number. Upgrade, etc ... I see some version numbers on products use the 4th position as free formatted. However when I try to build a package with a number like 1.2.3.123-56-ab-334 I get

Re: [WiX-users] Why does my WiX 3.5 installer not copy files to system 32 dir?

2011-04-04 Thread Michael Tissington
Have you tried running the msi with logging enabled and see what you get in the log? Msiexec /I package.msi /l*v log.txt -Original Message- From: Jacob, Marcus [mailto:mja...@toptechnologies.de] Sent: 04 April 2011 08:55 To: wix-users@lists.sourceforge.net Subject: [WiX-users] Why does m

[WiX-users] Prevent running msi twice ?

2011-04-01 Thread Michael Tissington
I've got a complete wix msi that requires elevation. When the user runs the msi a second time, the user is prompted with a dialog that says it is resuming this install. In addition, the Install button it no longer showing that elevation is required. How can I prevent running the msi a second time

[WiX-users] CustomAction impersonate="yes"

2011-03-31 Thread Michael Tissington
I have TWO ca which are executed when the user clicks the Finished button on the last page of the dialog However the ca always seems to execute as the elevated user and to be ignoring the impersonate attribute. How can I execute them as the original user? -

[WiX-users] Including localization files

2011-03-29 Thread Michael Tissington
I have a working wix install. The application has a number of localization folders of the form .\en-US, .\it-it etc Each with a couple of files. Is it possible to create a Wix install that automatically includes all the localization folders and files? In other words if I add a new local, Wix will

[WiX-users] Wix 3.5 .or 3.6

2011-03-28 Thread Michael Tissington
Which version are people using? If 3.6 safe and reliable? Thanks, Michael -- Enable your software for Intel(R) Active Management Technology to meet the growing manageability and security demands of your customers. Busine

Re: [WiX-users] VS2010, Wix and MSBUILD

2011-03-24 Thread Michael Tissington
Thanks for this - It looks like a BUG in the WiX targets file that is not defining DevEnvDir on a machine without Visual Studio 2010 installed. -Original Message- From: Pat O'Shea [mailto:pat.d.os...@gmail.com] Sent: 23 March 2011 19:55 To: wix-users@lists.sourceforge.net Subject: Re: [Wi

Re: [WiX-users] VS2010, Wix and MSBUILD

2011-03-23 Thread Michael Tissington
The problem was that DevEnvDir is not getting defined. Not sure what is responsible for doing so. -Original Message- From: Pat O'Shea [mailto:pat.d.os...@gmail.com] Sent: 22 March 2011 18:41 To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] VS2010, Wix and MSBUILD Michael, can

Re: [WiX-users] Shortcuts and Recent Programs list

2011-03-22 Thread Michael Tissington
thread that deserves attention? E-Mail Me - Original Message From: Michael Tissington To: General discussion for Windows Installer XML toolset. Sent: Tue, March 22, 2011 9:13:40 AM Subject: Re: [WiX-users] Shortcuts and Recent Programs list Hmm, WiX supports this but isn't this

Re: [WiX-users] Shortcuts and Recent Programs list

2011-03-22 Thread Michael Tissington
C151456 Registered Office - Helix Building, West Of Scotland Science > Park, Glasgow G20 0SP Email Disclaimer > > -Original Message- > From: Michael Tissington [mailto:michael_tissing...@ciqual.com] > Sent: 22 March 2011 12:35 > To: 'General discussion for Windows

[WiX-users] Shortcuts and Recent Programs list

2011-03-22 Thread Michael Tissington
In my install I'm creating a number of shortcuts. They are also automatically appearing in the Start Menu list of recently opened programs. Is there a way to prevent them appearing on this list? -- Enable your software f

[WiX-users] VS2010, Wix and MSBUILD

2011-03-21 Thread Michael Tissington
I have created a solution and project with VS and now I'm trying to build the solution for the command line with MSBUILD. However when I try to do this I can a bunch of errors that VS variables are not defined. How can I build my solution on a machine that does not have VS but does have MSBUILD a

Re: [WiX-users] Multilanguage install

2011-03-18 Thread Michael Tissington
MSBuild targets, figuring out how to get the LCIDs (even if it's possible ?) would cost me additional time which is surely better invested in just renaming the files which is a 5 minute job :-) 2011/3/18 Michael Tissington : > Instead of using CultureGroup.Identity is there a way to use the

Re: [WiX-users] Multilanguage install

2011-03-18 Thread Michael Tissington
.NET 40. 2011/3/18 Michael Tissington : > Too bad ... > > What are the properties for CultureGroup ? > Where does this come from? > > Thanks. > > -Original Message- > From: Tobias S [mailto:tobias.s1...@gmail.com] > Sent: 18 March 2011 11:49 > To: Genera

Re: [WiX-users] Multilanguage install

2011-03-18 Thread Michael Tissington
wn C# task fulfilling the actions from these 2 VBscripts. Think this should be possible using DTF. It's adding the transform(s) to a binary stream and modify the Summary Information stream... 2011/3/18 Michael Tissington : > Thanks got it :) > > Are there any additional hidden gems (

Re: [WiX-users] Multilanguage install

2011-03-18 Thread Michael Tissington
MSIs (e.g. en-US\MySetupProject.msi, de-DE\MySetupProject.msi and ja-JP\MySetupProject.msi). BTW: be sure not using a autogenerated ProductCode ("*") to not transform this by the transforms as well! 2011/3/18 Michael Tissington : > Thanks for the detailed info .. > > I&#x

Re: [WiX-users] Multilanguage install

2011-03-18 Thread Michael Tissington
ansform(s) (no matter how much Cultures you have set) except for the "base" language en-US. @Chris: For your wish Checkbox: Commenting and uncommenting is necessary here. Thanks for your hint regarding WMIC. Use now the functionality of ProcessExplorer to show the passed MSI parameters :-)

Re: [WiX-users] Multilanguage install

2011-03-18 Thread Michael Tissington
gt;> here this transform then contains a completely modified UI. But as >> never done also expect some issues when transforming with a torch >> generated transform for arabic (not sure whether -t Language is >> enough). >> >> As already stated think of using a boo

Re: [WiX-users] Multilanguage install

2011-03-17 Thread Michael Tissington
ows 7 SDK script > > > > cscript.exe utils\WiLangId.vbs installer.msi Package > > 1033,1034 > > > > then open the .msi with Orca and search for 1034. I get nothing. > > (Not to > say > > that obviusly, the > > installer still launches in e

Re: [WiX-users] Multilanguage install

2011-03-14 Thread Michael Tissington
to the english package in the form msiexec /i SetupProject.msi TRANSFORMS=it-IT.mst ? 2011/3/11 Michael Tissington : > Hi I'm having problems with creating an msi that works for different locals. > Below is an extract from the log file > > I have created an msi for each language,

[WiX-users] Multilanguage install

2011-03-11 Thread Michael Tissington
Hi I'm having problems with creating an msi that works for different locals. Below is an extract from the log file I have created an msi for each language, changing the Language in the Product element to 1033 and 1040 I can run both the 1033 and 1040 msi on the machine and they display the correc

Re: [WiX-users] msiexec redistributable

2011-03-08 Thread Michael Tissington
Software > direct: 630.227.8534 > mobile: 847.909.9921 > mathew.skil...@aspect.com > > -Original Message- > From: Peter Shirtcliffe [mailto:pshirtcli...@sdl.com] > Sent: Tuesday, March 08, 2011 8:56 AM > To: General discussion for Windows Installer XML toolset. > Sub

Re: [WiX-users] msiexec redistributable

2011-03-08 Thread Michael Tissington
: Peter Shirtcliffe [mailto:pshirtcli...@sdl.com] Sent: Tuesday, March 08, 2011 8:56 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] msiexec redistributable You don't. Its already present on all versions of Windows. -Original Message- From: Mi

Re: [WiX-users] msiexec redistributable

2011-03-08 Thread Michael Tissington
x27;t. Its already present on all versions of Windows. -Original Message- From: Michael Tissington [mailto:michael_tissing...@ciqual.com] Sent: 08 March 2011 14:31 To: 'General discussion for Windows Installer XML toolset.' Subject: [WiX-users] msiexec redistributable How do I

[WiX-users] msiexec redistributable

2011-03-08 Thread Michael Tissington
How do I package msiexec with my wix ? -- What You Don't Know About Data Connectivity CAN Hurt You This paper provides an overview of data connectivity, details its effect on application quality, and explores various alte

[WiX-users] Launch exe after install WITH Command line

2011-03-04 Thread Michael Tissington
I have used WixShellExecTarget to launch an exe at the end of our install. However I need to be able to specify command line arguments. How can a launch an exe with command line arguments? Thanks, Michael -- What You Do

[WiX-users] Major Upgrade - MSI or Wix?

2011-02-22 Thread Michael Tissington
I'm wondering if or how this is possible. The client already has an msi package installed, which need admin rights to install I'm wanting to push a Major upgrade to the client. However I'd like the client to do a silent install with elevated privilages. Is this possible? -

Re: [WiX-users] write to IniFile

2011-02-21 Thread Michael Tissington
] Sent: 21 February 2011 15:03 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] write to IniFile Yep, annoying, eh? The MSI SDK documents that behavior. Want to contribute a custom action that does better? On Mon, Feb 21, 2011 at 1:04 AM, Michael Tissington

[WiX-users] write to IniFile

2011-02-21 Thread Michael Tissington
I'm trying to write to an iniFile. How do I tell it which folder the file is in? Currently it seems to insist that it is in the \Windows folder. -- The ultimate all-in-one performance toolkit: Intel(R) Parallel Studio XE

Re: [WiX-users] Dynamically set WixVariable WixUILicenseRtf

2011-02-18 Thread Michael Tissington
the reference to the modified MyWixUI_InstallDir > > --> > > > > 6.) Add for every language a localization file with at least the > following content: > > xmlns="http://schemas.microsoft.com/wix/2006/localization";> >  1033 >  Languages\EnglishLicense

[WiX-users] Dynamically set WixVariable WixUILicenseRtf

2011-02-18 Thread Michael Tissington
How can I dynamically set the value of WixUILicenseRtf? I have tried What I'm trying to do is for each localization to use a different license.rtf. -- The ultimate all-in-one performance toolkit: Intel(R) Parallel Stud

Re: [WiX-users] Create Setup.exe

2011-02-17 Thread Michael Tissington
all@!UTF-8! Title="AppName" ExecuteFile="msiexec.exe" ExecuteParameters="/i YOURMSI.msi /l*v %temp%\YOUR_logfile.log ;!@InstallEnd@! see also my post http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/compression-tt 5930577.html#a5936482 regards Tobias 20

[WiX-users] Create Setup.exe

2011-02-17 Thread Michael Tissington
I've looked thru lots of google results trying to find out how to build a setup.exe from a single wix generated msi file. Visual Studio 2010 has a bootstrapper project but that looks like a work in process, am I right? Basically all I need my setup to do is to launch the msi and create a log f