[WiX-users] My Install Finished ExitDialog box get shown almost off screen on Windows 7 if my Progress Dialog is minimized

2014-01-17 Thread Rob Hamflett
Did you ever find a fix to this, or does anyone else know what to do about it? Thanks, Rob >From John Leung, on 01 Oct 2010: - I notice that during installation on a Windows 7 machine, if I minimized my install Progress Dialog box, then this ExitDialog will au

Re: [WiX-users] Running EXEs at install and uninstall

2013-03-08 Thread Rob Hamflett
On 07/03/2013 19:37, Alain Forget wrote: > 2) I only want the InstEXEs to run during installation (and not when > uninstalling). Thus, since there is the special REMOVE="ALL" to > denote "do this only if uninstalling", is there an equivalent I need to use > to specify "do this only if installing"

Re: [WiX-users] Finding out the number of cores during install?

2013-02-14 Thread Rob Hamflett
You can get into all sorts of pain identifying logical cores vs physical cores, but the quick way is to just look at the NUMBER_OF_PROCESSORS environment variable. Rob On 13/02/2013 18:22, Stephen Turner wrote: > Hi > > During the install of our product we need to know how many cores the CPU ha

Re: [WiX-users] Adding feature dependency

2013-02-05 Thread Rob Hamflett
You could make the Perl feature a child of the Java feature. It might look a little strange on the Feature selection tree, but it should work. Rob On 04/02/2013 09:34, Tal Maoz wrote: > Hello all, > > I'm trying to add a feature dependency into an installer and I can't find > how to do this. >

[WiX-users] Permissions not set

2013-02-01 Thread Rob Hamflett
I'm setting permissions on a folder as part of my installation. This works as expected, but I've had a couple of instances where the permissions aren't there after the installer has run. The log doesn't indicate that anything went wrong. Has anyone else seen this? Thanks, Rob -

Re: [WiX-users] Installer error 2812 after using customized dialogs

2013-02-01 Thread Rob Hamflett
If you log the installation it'll probably tell you what the "[2]" argument is. It might also be shown in the Windows Event Viewer. You'll probably find one of the your <"Publish Event=***" items is wrong. If you can't get anything out of a log, try removing those items one at a time until it

Re: [WiX-users] Quotes in IniFile lost on rollback

2013-01-24 Thread Rob Hamflett
n IniFile lost on rollback > > I honestly don't know. I haven't tried contacting Windows Installer team from > outside Microsoft yet. > > If you find out, I know I would appreciate a pointer. > > > On Wed, Jan 23, 2013 at 1:41 AM, Rob Hamflett wrote: > >> On 22

Re: [WiX-users] Quotes in IniFile lost on rollback

2013-01-24 Thread Rob Hamflett
er XML toolset. > Onderwerp: Re: [WiX-users] Quotes in IniFile lost on rollback > > I honestly don't know. I haven't tried contacting Windows Installer team from > outside Microsoft yet. > > If you find out, I know I would appreciate a pointer. > > > On Wed, Ja

Re: [WiX-users] Problem installing merge modules on server 2008 R2

2013-01-23 Thread Rob Hamflett
Starting with Vista the WinSxS runtime assemblies aren't committed until InstallFinalize. This meant my service couldn't be started as part of the StartServices action. I had to write a commit custom action to start the service for me. It's possible that this is the issue you're running into

Re: [WiX-users] Quotes in IniFile lost on rollback

2013-01-23 Thread Rob Hamflett
On 22/01/2013 15:55, Rob Mensching wrote: > You'd have to contact the Windows Installer team. Any idea how to do that? There used to be newsgroups but these were meant to be replaced with forums. There were a posting telling us this would happen and that a future post would give us the details

[WiX-users] Quotes in IniFile lost on rollback

2013-01-22 Thread Rob Hamflett
I've got an issue with an IniFile element on rollback. I'm writing a couple of values with the format ""[PROPERTY]"". This works fine, but the quotes gets stripped after a rollback. I tried an upgrade where the following occurs in the InstallExecuteSequence: InstallValidate InstallInitialize

Re: [WiX-users] ICE82 error with WiX 3.6

2013-01-17 Thread Rob Hamflett
On 17/01/2013 14:59, Arthur Yousif wrote: > I was able to find a solution for this finally. Found it here: > http://wix.sourceforge.net/manual-wix3/WixUI_customizations.htm > > However, even though it's working, the check box as the gray background > rather than a transparent one that would blend

Re: [WiX-users] Repairs and runtimes

2013-01-16 Thread Rob Hamflett
ccidentally downgraded, that's not really an option. Deploying the DLLs locally doesn't get you any of the benefits when the shared DLLs are updated, but at least they're less likely to be downgraded without your knowledge. Thanks, Rob On 15/01/2013 15:58, Bruce Cran wrote: &

[WiX-users] Repairs and runtimes

2013-01-15 Thread Rob Hamflett
I've been reading some comments online recently about using REINSTALLMODE=amus when you're installer contains runtime merge modules. The danger being that you can downgrade patched DLLs. Doesn't each set of runtime files have it's own folder in the WinSxS folder? Do patches for these files

Re: [WiX-users] DIFxApp and upgrades

2013-01-09 Thread Rob Hamflett
We've recently been seeing issue 1 where an upgrade doesn't work due to a missing registry entry. We're currently telling customers how to do a full repair on a case by case basis as this occurs. Did anyone ever find a fix for this? Thanks, Rob On 29/11/2010 21:23, James Johnston wrote: > Hi

Re: [WiX-users] Example of extracting a file from binary table

2013-01-08 Thread Rob Hamflett
Hi Natalie, I have the following function for extracting a release note out of my MSI's binary table. Hopefully this is of some use to you. Once you've got the file out, I expect executing it should be fairly simple, but let me know if you're having issues with it. void CMsiFile::ExtractOneR

Re: [WiX-users] Where can I find the installer that was used.

2012-11-15 Thread Rob Hamflett
Windows keeps a cached copy of the MSI in C:\Windows\Installer, if that's of any help. You could scan through the MSI files in there and check the properties for the one you want. Rob On 14/11/2012 20:51, tyler.w.r...@accenture.com wrote: > Hello all, > > I am trying to write an appli

Re: [WiX-users] execute wix msi through cmd

2012-10-19 Thread Rob Hamflett
Try it without the quotes round the values. Log the installation and see what it reports for the property values. Rob > > Any other ideas? > > Thanks, > Senthil. > > -Original Message- > From: Rob Hamflett [mailto:rob_hamfl...@sn.scee.net] > Sent: Thursday, Octo

Re: [WiX-users] execute wix msi through cmd

2012-10-11 Thread Rob Hamflett
Try this: msiexec /i MyApplication.msi /qn WIXUI_LABNAME=TestSilent WIXUI_LABOWNER=Me WIXUI_LABDESCRIPTION=description WIXUI_LABACCESS=1 Rob On 10/10/2012 22:34, Senthil Chandran wrote: > I wrote a wix project that generates a msi to execute my exe. > Part of the installer, I collect data from u

Re: [WiX-users] Setting Property based on condition

2012-10-10 Thread Rob Hamflett
Create a custom action like this: Then schedule a custom action like this: DBVERS Cheers, Rob On 09/10/2012 17:01, Justin Hull wrote: > We have a situation where the original install uses a property named 'DBTYPE' > to determine optional nstall of files. On the base install, some properties

[WiX-users] Wix 3.6 binaries unavailable

2012-09-14 Thread Rob Hamflett
I'm unable to download wix36-binaries.zip from http://wix.codeplex.com/releases/view/93929. What actually gets downloaded is a HTML page reporting "There was an error downloading the file. It may have been deleted from the server." Thanks, Rob

Re: [WiX-users] Remove and Repair in custom dialog

2012-09-06 Thread Rob Hamflett
On 05/09/2012 12:46, Natalie Carr wrote: > Hi, can anyone tell me why my remove and repair button won't work. I have > recreated the VerifyReadyDlg to fit my own custom dialogs. > > Not sure if I have to add anything for these to work. I'm getting an error > code of 2731 and I cannot find a solutio

Re: [WiX-users] How do I install to LocalAppData folder?

2012-08-24 Thread Rob Hamflett
You can either suppress it with the -sice flag, or check out the "How To: Create a Shortcut on the Start Menu" section from the manual as it covers the same ground. Rob On 24/08/2012 05:35, Huang, Deqing wrote: > Hi All, > I'd like to install my app to %LocalAppData% folder. > Following directo

Re: [WiX-users] WiXVSExtension for Visual Studio 11

2012-08-24 Thread Rob Hamflett
On 21/08/2012 16:22, Rob Mensching wrote: > Already does, looks like the documentation needs updating. Feel free to > find a doc bug. Done. https://sourceforge.net/tracker/?func=detail&aid=3561219&group_id=105970&atid=642714 Thanks, Rob ---

Re: [WiX-users] Disable Files In Use dialog

2012-08-23 Thread Rob Hamflett
You can suppress the FilesInUse dialog by specifying Dialog@Modeless="yes" and Dialog@Hidden="yes". Rob On 23/08/2012 01:31, Gustavo Gustavo wrote: > I’ve been struggling to get rid of the Files In Use dialog. Seems like > there’s no easy way out. > > Ideally, I would like to execute my MSI

Re: [WiX-users] Custom Action before UI WIX

2012-08-22 Thread Rob Hamflett
On 21/08/2012 16:09, Natalie Carr wrote: > Hi Rob, > > I finally figured that out, my only problem is now I run my custom action > before="AppSearch" but it flashes up the WelcomeDlg for a few seconds before > my CustomWelcomeDlg. Any ideas? > > Thanks > Is that an authored dialog? You should be

[WiX-users] WiXVSExtension for Visual Studio 11

2012-08-21 Thread Rob Hamflett
Is there any word on when WiXVSExtension will have properties, etc, for Visual Studio 11? Thanks, Rob -- Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landsca

Re: [WiX-users] Custom Action before UI WIX

2012-08-21 Thread Rob Hamflett
On 21/08/2012 10:35, Natalie Carr wrote: > Can anyone please tell me how to change the product name that shows up on > the UI to the property value I retrieve from my custom action. I have tried > everything that I can think of and still no joy. :( Use a property in your dialog title e.g. Title="W

Re: [WiX-users] Custom Action / DLL

2012-07-24 Thread Rob Hamflett
On 23/07/2012 13:20, chasewoofe...@gmail.com wrote: > You will need to set a PUBLIC parameter before you call the custom action, > then you set the parameter from within the dll custom action. You can do this with the MsiSetProperty() function. Rob -

Re: [WiX-users] Custom Action / DLL

2012-07-24 Thread Rob Hamflett
On 23/07/2012 13:20, chasewoofe...@gmail.com wrote: > You will need to set a PUBLIC parameter before you call the custom action, > then you set the parameter from within the dll custom action. You can do this with the MsiSetProperty() function. Rob -

Re: [WiX-users] Help with localized file locations

2012-06-18 Thread Rob Hamflett
You could try doing this with variables instead of localised strings. If there are a lot of these variables then you could put the command line arguments for defining them into a file and add "@filename.txt" to your command line, with a different file for each language. Rob On 15/06/2012 17:4

Re: [WiX-users] Installer ignores cancellation

2012-06-11 Thread Rob Hamflett
Hi Rob, On 08/06/2012 16:25, Rob Mensching wrote: > Custom actions can swallow the cancel message. If you look at the WiX > toolset's custom actions, we have wrappers for most of the MSI APIs and in > those wrappers, special handling ifa cancel is sent back. If you have an > install with custom ac

[WiX-users] Installer ignores cancellation

2012-06-08 Thread Rob Hamflett
I'm seeing a strange issue where it looks like I can't cancel an installation during the last action before InstallFinalize in the InstallExecuteSequence. I have two deferred custom actions for updating VS 2008 and 2010 (running "devenv /setup /nosetupvstemplates") and they are scheduled immed

Re: [WiX-users] Scheduling Install and Uninstall Custom Actions

2012-06-07 Thread Rob Hamflett
Are these actions specified as being deferred, so they actually run as part of the installation script? Rob On 05/06/2012 13:52, Ravi Raj wrote: > I want to schedule my custom actions in following manner: > 1) Install: CA will run *only after* the installer copies all files to the > respective d

Re: [WiX-users] Message Box at the top of Installer Dialog

2012-05-29 Thread Rob Hamflett
On 29/05/2012 04:14, Ravi Raj wrote: > But there are several messages I ant to populate via custom actions. I am > not sure how to do this. Can you help me with some examples. If you know the title of your dialog, you can get a handle to it by calling FindWindow("MsiDialogCloseClass", "My dialog

Re: [WiX-users] Finding Related Products

2012-05-28 Thread Rob Hamflett
On 26/05/2012 18:09, Rob Mensching wrote: > AppSearch? Doh! Got a bit too focused on the Upgrade table. Thanks. Rob -- Live Security Virtual Conference Exclusive live event will cover all the ways today's security and

[WiX-users] Finding Related Products

2012-05-25 Thread Rob Hamflett
Is there a way to check for pre-existing products other than via FindRelatedProducts? The problem I have is that regardless of the operation (install/repair/remove) I need to discover if some of our other products are installed, and FindRelatedProducts only runs on install. Is there a way to d

Re: [WiX-users] Completely suppress any FilesInUse dialogs

2012-05-25 Thread Rob Hamflett
On 24/05/2012 16:49, Chris Robison wrote: > I've been trying to completely suppress any FilesInUse dialogs from > appearing, because I want to handle it. I've tried > setting MSIRESTARTMANAGERCONTROL=Disable, that seems to prevent restart > manager, which is good. I've also tried creating my own Fi

Re: [WiX-users] WIX regsvr32 with XP

2012-05-25 Thread Rob Hamflett
On 24/05/2012 17:52, Wilson, Phil wrote: > Those top two are Visual C++ 2010 C runtime support Dlls, typically supplied > with this type of thing: > > http://www.microsoft.com/en-us/download/details.aspx?id= > > or with merge modules that came with Visual Studio 2010. You'll probably > need

Re: [WiX-users] WIX regsvr32 with XP

2012-05-24 Thread Rob Hamflett
Have you tried running regsvr32 on the DLL directly on an XP machine? I've seen issues with DLLs where the developer is using a Windows 7 machine and has unknowingly used an API call that's just not available on XP. --

Re: [WiX-users] (no subject)

2012-05-14 Thread Rob Hamflett
On 11/05/2012 19:22, Elliott Dicus wrote: > Do I need > to be doing something like: > > > > > > > and using DIFxApp? Yes, I'd say you're best off using Difx. Rob -- Live Security Virtual Conference Exclusi

Re: [WiX-users] Adding paramater to msi that will set value in config file

2012-05-09 Thread Rob Hamflett
On 08/05/2012 15:39, Charles Broadfoot wrote: > No. How would I do that? Just add the text "-ext WixUtilExtension" to wherever your command line is specified. Where that is will depend on your build system. Rob -- Li

Re: [WiX-users] Adding paramater to msi that will set value in config file

2012-05-03 Thread Rob Hamflett
On 02/05/2012 15:07, Charles Broadfoot wrote: > > Hi Wix Users, > > I'm trying to do what I would think would be pretty trivial and that is > update a config file value based on a parameter passed into the msi. But > when I try to do this, I keep getting the error : error CNDL0200 : The > Compo

[WiX-users] Folders not removed even with RemoveFolder

2012-02-15 Thread Rob Hamflett
I'm seeing an issue where the installer is occasionally leaving behind empty folders even though the log reports that they are being deleted. I have some shortcuts on the Start Menu, For each folder there is a component containing a RemoveFolder item, and the component for each shortcut also c

Re: [WiX-users] unable to start a service through MSI

2012-02-02 Thread Rob Hamflett
On 02/02/2012 01:15, Rajesh Khetan wrote: > Thanks Phil. Is there a way to ensure in WXS file, such that the service gets > started after all the dependent dlls are installed? You could add a commit custom action to start the service. This will run once the install has been finalised, so the ev

Re: [WiX-users] Run App After Setup

2012-01-25 Thread Rob Hamflett
On 24/01/2012 16:46, Parkes, Kevin wrote: > The only snag is having the checkbox at the bottom of the dialog to overcome > the problem of its having a grey background - it there a way to get the > checkbox in the main bit of the dialog without the grey background? Yes, but it's a bit hacky. You

Re: [WiX-users] Registry setting only populating during first installation

2011-09-30 Thread Rob Hamflett
A log file would show you when the property changes. Are you doing an AppSearch for the registry value? If so, a pre-existing registry value would overwrite the value you gave on the command line. Rob On 29/09/2011 20:58, Nick Porter wrote: > I am attempting to write new values to the Regist

Re: [WiX-users] Ini Configuration

2011-09-19 Thread Rob Hamflett
Check out the IniFile element. Rob On 19/09/2011 16:04, Sascha Trenz wrote: > Hi, > i want to Change some Configuration Settings which are stored in Ini > Configuration Files. > Is there any Chance to do that ? > For Example > > Example.ini > > [Settings] > Value1=1234 > > > And change

[WiX-users] Occasional crash when running "devenv /setup"

2011-09-05 Thread Rob Hamflett
Hi, I'm having some occasional crashes when running "devenv /setup" during an install. It's not completely reproducible and only happens occasionally. Everything is statically linked and I don't think there's a runtime dependency problem occuring. I've also asked the developers to cast an

Re: [WiX-users] Replace component on reinstall

2011-08-25 Thread Rob Hamflett
o be version specific. If I install the same > version installer I would like it to overwrite the installed file. > > > > > - Original Message - > From: Rob Hamflett > To: wix-users@lists.sourceforge.net > Cc: > Sent: Thursday, August 18, 2011 8:17 AM > S

Re: [WiX-users] Auto deletion of reg values written by MSI

2011-08-22 Thread Rob Hamflett
Try Component@Permanent='yes' Rob On 19/08/2011 18:19, Pratapa Reddy Sanaga wrote: > Hi, > > Is there a way I can ask the MSI not to delete the registry values it has > written to the MSI during uninstallation? > > I'm looking at the RegistryKey's Action options. create or > createAndRemoveOnUnin

Re: [WiX-users] Replace component on reinstall

2011-08-18 Thread Rob Hamflett
You could try specifying a version on the File element. I think that will cause Windows Installer to always replace the unversioned file on disk with what it thinks is a versioned file. Rob On 17/08/2011 16:30, The Eligible Bachelors wrote: > Hello, > > I would like to have a component that d

[WiX-users] Progress text for commit custom actions

2011-08-15 Thread Rob Hamflett
Hi, I'm trying to show progress text for a commit custom action. For deferred custom actions I have a ProgressText element with the Action value set to the name of the matching custom action, and that works fine. For commit custom actions, this text appears really briefly, and then the inst

Re: [WiX-users] Detect DirectX version

2011-07-25 Thread Rob Hamflett
I've found DirectXSetupGetVersion(), so I'll write a custom action to call that. Rob On 25/07/2011 11:30, Rob Hamflett wrote: > I saw in a post from way back in 2007 that WiX provides properties called > DXMajorVersion and > DXMinorVersion, but these don't seem to be

[WiX-users] Detect DirectX version

2011-07-25 Thread Rob Hamflett
I saw in a post from way back in 2007 that WiX provides properties called DXMajorVersion and DXMinorVersion, but these don't seem to be around anymore (at least, not in 3.5.2519.0). The WixDirectXExtension only seems to have properties for getting the pixel shader and vertex shader versions

Re: [WiX-users] Run a custom exe with administrator privileges with burn

2011-07-05 Thread Rob Hamflett
inistration privileges (Once by > burn and once by the app). So I assume that the UI is running without > elevation. Is it possible to tell burn to run the application from > within the elevated process? > > Michael > > Am 05.07.2011 12:51, schrieb Rob Hamflett: >> If you run a

Re: [WiX-users] Run a custom exe with administrator privileges with burn

2011-07-05 Thread Rob Hamflett
If you run a process that requires admin privileges then it will prompt, unless you run it from a process that is already elevated. If Burn is elevated then you'll be fine, otherwise you'll get the prompt. Rob On 05/07/2011 11:30, Michael Stoll wrote: > Hi, > > I want to start an application

Re: [WiX-users] Bootstrapper upgrade code detection

2011-07-04 Thread Rob Hamflett
get; } > public PackageState State { get; } > } > > It is this PackageState I am talking about; it doesn't get set to what we > expect, as I mentioned in my first mail. > > Best regards > > ALEXANDER K. SCHRØDER > > -Original Message-

Re: [WiX-users] Bootstrapper upgrade code detection

2011-07-04 Thread Rob Hamflett
If you were using native code, then you'd want MsiEnumRelatedProducts(). A Google search provides a bunch of links with info on how to call it from C#. I don't know if you're using C# or VB, but a bit of searching around that function name should get you there. Rob On 04/07/2011 09:52, Alex

Re: [WiX-users] Uninstalling driver package with DPInst

2011-07-04 Thread Rob Hamflett
deleted manually after the installation. > So, when launching the installer for uninstallation, the installer couldn't > find that inf. > > 2011/7/4 Rob Hamflett > >> You could schedule it before the RemoveFiles action. >> >> Rob >> >> On 04/07/2011 08:5

Re: [WiX-users] Uninstalling driver package with DPInst

2011-07-04 Thread Rob Hamflett
You could schedule it before the RemoveFiles action. Rob On 04/07/2011 08:56, Yuk Hei Pang wrote: > Hi, I am currently having a msi created with wix 3.5 to install a driver > package along with an application. > The following custom action is used for uninstalling the driver package. > >

Re: [WiX-users] Abdoulaye Souleymanou/RSD ist außer Haus.

2011-07-01 Thread Rob Hamflett
On 01/07/2011 15:38, Albert van Peppen wrote: > It's easy; just add another spamrule in your mail read app :) I'm using the newsgroup. Rob -- All of the data generated in your IT infrastructure is seriously valuable. Wh

Re: [WiX-users] Abdoulaye Souleymanou/RSD ist außer Haus.

2011-07-01 Thread Rob Hamflett
Thanks, Rob On 01/07/2011 15:22, Rob Mensching wrote: > If this continues over the long weekend, I will. > > 2011/7/1 Rob Hamflett > >> If we're going to get a whole flood of these for the next month, can >> someone with admin access >> please remove Abdoulaye

[WiX-users] Dealing with the flood of auto-responses

2011-07-01 Thread Rob Hamflett
Sorry for the re-post, but I saw my original come through with the matching subject line, and figured whoever's in charge might just auto-delete it. If we're going to get a whole flood of these for the next month, can someone with admin access please remove Abdoulaye from the list (and possible

Re: [WiX-users] Abdoulaye Souleymanou/RSD ist außer Haus.

2011-07-01 Thread Rob Hamflett
If we're going to get a whole flood of these for the next month, can someone with admin access please remove Abdoulaye from the list (and possible remove the current posts from the newsgroup)? No offence to Abdoulaye, but I've had 35 of these already, and it's only 10:25am on the first day of

Re: [WiX-users] Can an x86 msi create a registry key under HKEY_CLASSES_ROOT\Wow6432Node on x64 systems?

2011-07-01 Thread Rob Hamflett
On 30/06/2011 18:01, David Watson wrote: > Its also worth noting that Microsoft say it is bad form to actually write to > HKCR directly (its behaviour depends on the environment) so for per machine > installs you should install to HKLM\Software\Classes and > HKCU\Software\Classes for per user insta

Re: [WiX-users] WiX noob: Starting an exe after installation.

2011-06-30 Thread Rob Hamflett
I don't think the 2826 error is the real problem. It's more of a warning about your dialog layout. I get that error in my logs too. What does Windows Installer quote as the error in the error dialog, or is there something else reported later on in the log? The issue with your original cust

Re: [WiX-users] How To Run Custom Action During Install But Not During Uninstall

2011-05-25 Thread Rob Hamflett
use a few of these actions in a repair situation. What condition > should I use in that case? > > Thanks! > > Brad > > > -Original Message- > From: Rob Hamflett [mailto:r...@snsys.com] > Sent: Tuesday, May 24, 2011 3:21 AM > To: wix-users@lists.sourcefor

Re: [WiX-users] How To Run Custom Action During Install But Not During Uninstall

2011-05-24 Thread Rob Hamflett
Just to let you know if you didn't, but that condition will mean your Custom Action won't run during a repair, in case it's important. Rob On 23/05/2011 20:44, Bradley Ward wrote: > OK, I figured my particular case out. > > The condition you want to use is simply "NOT Installed". > > Example: >

Re: [WiX-users] Why are we using a mailing list vs forum?

2011-05-19 Thread Rob Hamflett
Out of interest, does anyone know what the forums are supposed to be for Windows Installer stuff? There used to be two newsgroups, but then Microsoft decided to convert everything to forums. Posts went round saying the newsgroups were going to be discontinued, and that details about a replace

Re: [WiX-users] Why are we using a mailing list vs forum?

2011-05-19 Thread Rob Hamflett
The email list is mirrored in a news group, which I find much easier to use. server name: news.gmane.org port: 119 group: gmane.comp.windows.devel.wix.user Rob On 18/05/2011 16:59, john.bu...@telvent.com wrote: > Just curious. I find forums easier to use. :o) And SourceForge has a > forums feat

Re: [WiX-users] How to use a particular version of runtime merge modules?

2011-05-18 Thread Rob Hamflett
Orca can open .msm files as well as .msi files. Take a look at the File table and it's version column. Rob On 18/05/2011 16:39, Brad Lemings wrote: > Moving to the latest runtime version means a couple days work > rebuilding/redistributing our 3rd-party tools. That's about the only reason. >

Re: [WiX-users] How to use a particular version of runtime merge modules?

2011-05-18 Thread Rob Hamflett
I'd definitely include the policy modules. I took them out after reading the referenced comment in the WiX doc, and then a Visual Studio update broke our installation. Visual Studio was building against one version of the runtime and the merge modules were distributing another. Re-adding th

Re: [WiX-users] Conditionnal Installation of Component

2011-05-17 Thread Rob Hamflett
Comments inline. Rob On 16/05/2011 18:22, Sylou wrote: > Hello everyone, > > I'm new to WIX. Yes another > > > > OK, I have a Modular Client-Server Application to > Install. > > I could have 3 type of installation: > > 1- Client > > 2- Server > > 3- Client and Server on the same co

Re: [WiX-users] DIFxApp does not properly rollback to the old driverwhen doing a major upgrade

2011-04-27 Thread Rob Hamflett
The limited functionality in the rollback mechanism of DIFx does not support that." So it looks like there isn't going to be a fix for this. Rob On 11/03/2011 14:00, Rob Hamflett wrote: > I appear to be looking at the same problem. I was able to reproduce it by > hitting '

Re: [WiX-users] Difx versions in WiX

2011-04-26 Thread Rob Hamflett
e that feature request was > filed discussing issues that were reportedly fixed in the newer DifxApp > builds, so it may be worth your while to upgrade to 3.5. > > Blair > > -Original Message- > From: Rob Hamflett [mailto:r...@snsys.com] > Sent: Thursday, April 2

Re: [WiX-users] Error 2623

2011-04-26 Thread Rob Hamflett
w error. What > MSI version or OS is the customer on? > > Phil Wilson > > -Original Message- > From: Rob Hamflett [mailto:r...@snsys.com] > Sent: Thursday, April 21, 2011 3:34 AM > To: wix-users@lists.sourceforge.net > Subject: [WiX-users] Error 2623 > >

Re: [WiX-users] Difx versions in WiX

2011-04-26 Thread Rob Hamflett
tedly fixed in the newer DifxApp > builds, so it may be worth your while to upgrade to 3.5. > > Blair > > -Original Message- > From: Rob Hamflett [mailto:r...@snsys.com] > Sent: Thursday, April 21, 2011 5:32 AM > To: wix-users@lists.sourceforge.net > Subject: [WiX-u

[WiX-users] Difx versions in WiX

2011-04-21 Thread Rob Hamflett
Is there anywhere that lists what version of Difx is in which versions of WiX. I've been having some trouble with it lately and have been wondering if there's anything changed in the newer versions of WiX. Still on 3.0.4805.0 with no real reason to upgrade, but an improved Difx implementati

[WiX-users] Pending File Rename Operation not performed

2011-04-21 Thread Rob Hamflett
A customer has reported an incident where a DLL did not get updated after an installation. The log shows that the file was in use and that a Pending File Rename was requested on the next reboot. The customer says they rebooted when prompted, but the DLL was still at the old version. Does an

[WiX-users] Error 2623

2011-04-21 Thread Rob Hamflett
A customer reported an entry in their Windows Event log which has the text: "The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2623. The arguments are: , ," As far as I can tell that's not a Windows Install

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

2011-04-12 Thread Rob Hamflett
On 11/04/2011 21:41, Wilson, Phil wrote: > You could try sequencing RemoveExistingProducts before CostInitialize. We used to do this and were fine for several years but then msiexec.exe started crashing on a number of machines. I had to change everything to use the REINSTALLMODE method. Rob -

Re: [WiX-users] [Wix-users] How can I kill process when uninstall

2011-04-06 Thread Rob Hamflett
to add the option into that Dialog because I only refer > that Dialog to my wxs but cannot modify the definition. > > > > > If that has lots of work to do, I will leave it as it is. > > Thank all of you for your kindly helps! > > Sunny > > 2011/4/1 Rob Hamfle

Re: [WiX-users] [Wix-users] How can I kill process when uninstall

2011-04-01 Thread Rob Hamflett
t; I put down the log it says the "Qt Assistant" holds some Qt dll from my > install folder. That's strange! > > Info 1603. The file C:\MyApplicationFolder\phonon4.dll is being held in use > by the following process: Name: assistant, Id: 6820, Window Title: '(n

Re: [WiX-users] [Wix-users] How can I kill process when uninstall

2011-04-01 Thread Rob Hamflett
work if you terminate the process. There is still >> the >>> Files In Use dialog as a second line of defence too (although I have once >>> seen a user ignore that and expect an uninstall to work without >> rebooting). >>> >>> -Original Message

Re: [WiX-users] [Wix-users] How can I kill process when uninstall

2011-03-31 Thread Rob Hamflett
Can CloseApplication kill processes though? It doesn't look like it can. If you need to forcibly kill something you might need a custom action to run taskkill or some custom code that does the job. Rob On 31/03/2011 09:45, Peter Shirtcliffe wrote: > Look at the CloseApplication element in th

Re: [WiX-users] Conditional ServiceControl entry

2011-03-28 Thread Rob Hamflett
ing Blog > Have a hot tip, know a secret or read a really good thread that deserves > attention? E-Mail Me > > > > - Original Message > From: Rob Hamflett > To: wix-users@lists.sourceforge.net > Sent: Fri, March 25, 2011 12:17:31 PM > Subject: [WiX-users] Cond

[WiX-users] Conditional ServiceControl entry

2011-03-25 Thread Rob Hamflett
Is there a way to set a condition on a ServiceControl entry? Like having a service start after a repair but not on the initial installation? Would this best be handled with separate ServiceControl entries in separate components, with conditions on the components? Thanks, Rob --

Re: [WiX-users] DifxApp - Cannot create a stable subkey under a volatile parent key

2011-03-25 Thread Rob Hamflett
eck I spent some days on that > issue... > > Regards > Tobias > > > > 2011/3/24 Rob Hamflett: >> I'm seeing an occasional issue using DifxApp, which a log reports as: >> >> DIFXAPP: INFO: ENTER UpdateDriverForPlugAndPlayDevices... >> DIFXAPP: ERROR:

[WiX-users] DifxApp - Cannot create a stable subkey under a volatile parent key

2011-03-24 Thread Rob Hamflett
I'm seeing an occasional issue using DifxApp, which a log reports as: DIFXAPP: INFO: ENTER UpdateDriverForPlugAndPlayDevices... DIFXAPP: ERROR: RETURN UpdateDriverForPlugAndPlayDevices. (Error code 0x3FD: Cannot create a stable subkey under a volatile parent key.) DIFXAPP: ERROR: Installatio

Re: [WiX-users] FilesInUse in Upgrade scenario

2011-03-17 Thread Rob Hamflett
In earlier versions of Windows Installer, the Files In Use dialog wouldn't be shown if WI couldn't find a window associated with the file/app. I think the theory went that it's confusing to ask the user to close a program they can't see running. This can be a problem if you have any programs

Re: [WiX-users] [WiX] Uninstalling custom action exe's (64 bit Folderissue)

2011-03-14 Thread Rob Hamflett
You also probably shouldn't refer to the Program Files folder by name, because it might not be called that (especially on a non-English OS). It's better to use the ProgramFilesFolder and ProgramFiles64Folder properties. You can use these as the Id for a Directory element. Rob On 14/03/2011

Re: [WiX-users] Removing Broken Installs Safely

2011-03-14 Thread Rob Hamflett
Depending on what exactly is broken you might be able to get things into a working state again just by running a repair first. Rob On 12/03/2011 13:06, Jammer wrote: > Hi Michael, > > I've managed to get it fix with msizap.exe ... scary tool ... > > Thanks, > > Jammer > > On 12/03/2011 12:47, M

Re: [WiX-users] DIFxApp does not properly rollback to the old driverwhen doing a major upgrade

2011-03-11 Thread Rob Hamflett
I appear to be looking at the same problem. I was able to reproduce it by hitting 'cancel' near the end of an uninstall and letting it rollback. After that uninstallation failed. Performing a repair fixed things. Did you email the difx team at the email address Quinton suggested, and if so

Re: [WiX-users] adding file to the 3rd party directory

2011-03-07 Thread Rob Hamflett
Use a directory with an Id of 3RDPARTYPROGRAM_PATH. When the property with the same name gets updated so will the directory path. Rob On 04/03/2011 22:10, Mr Dimitri Klyachko wrote: > I have a task to add a file to a directory that appears after the 3rd party > software has been installed. >

Re: [WiX-users] FW: WIX Installer issue.

2011-02-11 Thread Rob Hamflett
Create the default directory structure as you normally would in WiX and set the id of the configurable directory to 'installpath'. When the user overrides installpath on the command line, it will change that directory to point at the new path. Rob On 11/02/2011 04:11, Rohit Ghule wrote: > Hi

Re: [WiX-users] 64 Bit program files folder

2011-01-21 Thread Rob Hamflett
Use Directory@Id="ProgramFiles64Folder" and Package@Platform="x64". Other pre-defined folders are listed here: http://msdn.microsoft.com/en-us/library/aa370905%28VS.85%29.aspx#system_folder_properties Rob On 21/01/2011 15:32, Manoj Jangid wrote: > Hi > > I am trying to build a installer for 64bi

Re: [WiX-users] Driver without an INF file

2011-01-20 Thread Rob Hamflett
So I finally got this working and thought I'd best post the reply here for other people having the same issue. Specifically, the dirver I'm installing is a file system driver. Here's my INF file: -- START OF FILE --- ; Copyright

Re: [WiX-users] question about the CostingComplete MSI bug

2011-01-04 Thread Rob Hamflett
On 21/12/2010 07:12, Neil Sleightholm wrote: > For more details about this take a look here > http://www.joyofsetup.com/2010/10/09/experimental-results-part-ii/ > > So far the result seem to indicate the not waiting for CostingComplete > doesn't have any effect. I can't say I agree with that. I w

Re: [WiX-users] how to uninstall product without UpgradeCode

2010-12-14 Thread Rob Hamflett
The FindRelatedProducts action updates the property used in the Upgrade table with the product codes of the products it finds. You could try adding your Product code to the same property, although I don't know what happens if the product doesn't exist. You might need to use a custom action t

  1   2   3   4   5   6   >