[WiX-users] WiX 3.6 + Windows 8 + Visual Studio 2012 = Fail?

2012-11-28 Thread Sami Ovaska
Hi, is there anybody who has managed to build any kind of installer by using WiX 3.6 and Visual Studio 2012 in Windows 8? Same installer that was building with Visual Studio 2010 in Windows 7 doesn't build with Visual Studio 2012 in Windows 8. Regards, Sami Ovaska ---

[WiX-users] Installing PostGreSql with WiX Installer

2012-11-28 Thread Iranga Aluthgedara
Hi, Could you please advice me 1. How to install PostgreSQL and 2. Add a connection to the Postgre server 3. Setup a database and run a sql query from my msi package. Thanks and Regards, IC -- Keep yourself connected to

Re: [WiX-users] Where to install to by default nowadays; App Data or Program Files?

2012-11-28 Thread Katherine Moss
Okay thanks guys. I think that sometimes I forget about UAC because if I recognize the file name, I tend to click right through the UAC prompt as a formality; I double clicked it, so of course I want a program to install! And he does use a certificate; a PFX file. But the interesting thing ab

Re: [WiX-users] ExePackage Dependency versioning

2012-11-28 Thread Neil Sleightholm
I have not tried this but I would have thought you would need to have different keys for SP1 and SP2 to achieve this. Neil -Original Message- From: Sunny Li [mailto:sunnie...@gmail.com] Sent: 28 November 2012 21:50 To: General discussion for Windows Installer XML toolset. Subject: [WiX-

Re: [WiX-users] Where to install to by default nowadays; App Data or Program Files?

2012-11-28 Thread Jeremy Farrell
Googling 'msdn appdata' brought up http://blogs.msdn.com/b/patricka/archive/2010/03/18/where-should-i-store-my-data-and-configuration-files-if-i-target-multiple-os-versions.aspx which might be useful. > From: Katherine Moss [mailto:katherine.m...@gordon.edu] > Sent: Wednesday, November 28, 2012

Re: [WiX-users] Where to install to by default nowadays; App Data or Program Files?

2012-11-28 Thread Hoover, Jacob
You write logs to appdata because you want a standard user to be able to run a scan and store logs. Anything the application needs to modify or create at runtime should be in appdata. In addition, per user installs go to app data (because a per user install can be done without admin rights). H

[WiX-users] ExePackage Dependency versioning

2012-11-28 Thread Sunny Li
Hi there, I've been looking at the DepdencyExtensions in wix3.6 and was planning to use that to prevent SQL Server from being uninstalled when I upgrade my bundle. Just wondering how I can also handle versioning with this extension. So for example, in version 1 I might use SQL 2008 R2 SP1

Re: [WiX-users] Where to install to by default nowadays; App Data or Program Files?

2012-11-28 Thread Andreas Mertens
Perhaps the developer meant certification of the application (i.e. Windows 7 App Certification), rather than requiring a certificate? Andreas A. Mertens Founder, Software Consultant and Developer NVision Ideas, Inc. email: andre...@nvisionideas.com Fr

Re: [WiX-users] Where to install to by default nowadays; App Data or Program Files?

2012-11-28 Thread Katherine Moss
Thanks. I'll have to look at the certificate properties then and see if I can glean any more information on why the cert needs to be there. I always found it odd, but I also know that it is unprofessional to push professional developers especially if the source code is not publically available

Re: [WiX-users] How to perform an upgrade without removing a package?

2012-11-28 Thread Neil Sleightholm
This part of 3.6. The version tells burn what version of the package is installed. Neil -Original Message- From: sunniejai [mailto:sunnie...@gmail.com] Sent: 28 November 2012 16:29 To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] How to perform an upgrade without removing a

Re: [WiX-users] Burn: upgrades

2012-11-28 Thread Neil Sleightholm
In this first burn log (the problem package is Setup): Planned package: PreConfigure, state: Absent, default requested: Present, ba requested: Present, execute: Install, rollback: Uninstall, cache: Yes, uncache: No, dependency: Register Planned package: Setup, state: Absent, default requested: Pr

Re: [WiX-users] How can I make Wix install only modified files

2012-11-28 Thread Hoover, Jacob
May not be optimal, but if you can't find out why it is restarting explorer you could always create a separate MSI for the one shell extension and install them together with burn as a bundle. -Original Message- From: Jeremy Chiu [mailto:green...@gmail.com] Sent: Wednesday, November 28,

[WiX-users] How can I make Wix install only modified files

2012-11-28 Thread Jeremy Chiu
Hi All, I'm trying to create an installer that drops down an exe + a few dlls. One of these dlls is infrequently changed and is injected into explorer (it does icon overlays & explorer loads it when it launches). I'm using RemoveExistingProducts after InstallFinalize but I think the installe

Re: [WiX-users] WiX 3.6 upgrading perUser to perMachine

2012-11-28 Thread Derek Wickern
It looks like I can use MsiEnumRelatedProducts to find the existing products by upgrade code. I can't uninstall the old products from a custom action, but I should be able to use the bootstrapper for that. I know there will be difficulty uninstalling a product which was installed by another user, b

[WiX-users] NGenLocationProperty Issue

2012-11-28 Thread Pyotr Paladin
Recently I've asked develope some application via WiX and merge NGenLocationProperty , I know that this property is linked to ngen.exe of Windows Framework for generation native images. But I cannot find clear examples,tutorials, not blogs(with all respect), can you help me with this issue, tha

Re: [WiX-users] Shortcut Name

2012-11-28 Thread Natalie Carr
Hi Rob, Can u provide a quick sample, I'm not too sure what exactly you mean, Thanks. Kind Regards, Natalie Carr -Original Message- From: Rob Mensching [mailto:r...@robmensching.com] Sent: Wednesday, November 28, 2012 4:21 PM To: General discussion for Windows Installer XML toolset. Subj

Re: [WiX-users] Client update from 3.5 MSI to 3.6

2012-11-28 Thread Rob Mensching
Yes, exactly. On Wed, Nov 28, 2012 at 2:36 AM, Stelios Kyprou wrote: > So what do I need to make sure in order to achieve this? > I noticed that we now have a bundle upgradecode, and the existing msi > upgradecode,. > I would assume that the msi upgrade code has to be the same as the old msi. >

Re: [WiX-users] Shortcut Name

2012-11-28 Thread Rob Mensching
Yes but only if the Name column for the Shortcut is of type "Formatted". On Wed, Nov 28, 2012 at 1:22 AM, Natalie Carr wrote: > Hi, Is there any way to use a property defined at install time for the > shortcut name attribute or does this have to be defined at build time? > > > > Kind Regards, >

Re: [WiX-users] How to perform an upgrade without removing a package?

2012-11-28 Thread sunniejai
Hi there Neil, Is the Dependency extension only offered for Wix 3.7? Or can we use it in Wix 3.6 as well? Also, what does the version attribute do? Thanks, -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/How-to-perform-an-upgrade-without-removi

Re: [WiX-users] [Burn] Bundle appears twice in ARP after upgrade.

2012-11-28 Thread Rob Mensching
Well, it depends what the bundle operation was when the restart was required. If the bundle was being installed and it said a restart is required but you don't take the restart then after a restart the bundle will be fully installed. If the bundle was being uninstalled and a restart was required th

Re: [WiX-users] RegistryValue: Could not write value "#somevalue"

2012-11-28 Thread Vadym Verba
-The Registry table uses # as the prefix to say you want an integer number, -and your string is not a number. -http://msdn.microsoft.com/en-us/library/windows/desktop/aa371168(v=vs.85).as px -The docs say two # characters should be used, the first will be ignored and -the rest treated as the st

[WiX-users] How to handle flavor upgrades

2012-11-28 Thread Arnette, Bill
What would be the recommended way to handle "flavor" upgrades such as from an Express version of an application to a Pro version? --**-- This email and any files transmitted with it are confidential and intended solely for the use of Signalscape, Inc. and the addresse

Re: [WiX-users] RegistryValue: Could not write value "#somevalue"

2012-11-28 Thread Phil Wilson
The Registry table uses # as the prefix to say you want an integer number, and your string is not a number. http://msdn.microsoft.com/en-us/library/windows/desktop/aa371168(v=vs.85).as px The docs say two # characters should be used, the first will be ignored and the rest treated as the string.

Re: [WiX-users] Some in burn wixstba similar to msiexec /x ProductCode

2012-11-28 Thread Robert.Priest
Ok. Thanks for the information Rob. That confirms it, at least. I will try searching for the UpgradeCode. -Original Message- From: Rob Mensching [mailto:r...@robmensching.com] Sent: Tuesday, November 27, 2012 11:24 PM To: General discussion for Windows Installer XML toolset. Subject: Re

Re: [WiX-users] Client update from 3.5 MSI to 3.6

2012-11-28 Thread Stelios Kyprou
So what do I need to make sure in order to achieve this? I noticed that we now have a bundle upgradecode, and the existing msi upgradecode,. I would assume that the msi upgrade code has to be the same as the old msi. The bundle upgrade code will be used when? When upgrading to a newer bundle? ---

[WiX-users] Shortcut Name

2012-11-28 Thread Natalie Carr
Hi, Is there any way to use a property defined at install time for the shortcut name attribute or does this have to be defined at build time? Kind Regards, Natalie Carr -- Keep yourself connected to Go Parallel: INSI

[WiX-users] remove me

2012-11-28 Thread praneet vizzapu
-- Keep yourself connected to Go Parallel: INSIGHTS What's next for parallel hardware, programming and related areas? Interviews and blogs by thought leaders keep you ahead of the curve. http://goparallel.sourceforge.net

[WiX-users] RegistryValue: Could not write value "#somevalue"

2012-11-28 Thread Vadym Verba
Hello everyone. Recently I have faced some very weird issue. Not sure if it is some kind of defect or just my lack of knowledge (which is most probably the case). Here it is: I have naked installer with one single component which contains: Nothing suspicious, isn't it? Well when I try to lu