Re: [WiX-users] Problem with file association and harvesting files

2011-11-22 Thread Peter Bulyaki
Hi, Thanks for your reply. A transform in this my would be too complicated - I run my wix builds based on conditions set in environment variables, so I would need a conditional transform. I am not saying it is impossible to do, but since heat is run from the wixproj by votive, solving it like

[WiX-users] Burn + Launch Payload EXE after bootstrapp installation

2011-11-22 Thread ppremk
Hi All, Been playing around with burn recently and I would like to seek help on 2 questions. 1. How to Launch an executable installed via the MSI chained package? If I run the MSI as stand alone, I am able to launch the exe that it installs, but somehow this is not the case when included in the

Re: [WiX-users] Problem with file association and harvesting files

2011-11-22 Thread Peter Bulyaki
Well, I have to correct myself: The Property element would not work in my case, I have to use SetProperty if I want to add BINLOCATION to the string: SetProperty Id=FileAssociationProperty Value=[BINLOCATION]\$(env.MAIN_EXECUTABLE) After=CostFinalize / Peter On Tue, Nov 22, 2011 at 9:15 AM,

Re: [WiX-users] WiX-based installer temporarily breaks Windows Installer?

2011-11-22 Thread Peter Bulyaki
Hi, I think I have permanently fixed this problem. So just for the record: I think it was caused by a trick I had to use with ServiceInstall. I need to install a service, that is using srvany.exe to start. So the ImagePath in the registry is not my executable, but srvany.exe, and my executable is

Re: [WiX-users] Refresh shortcut icons during setup

2011-11-22 Thread David Watson
Have you not tried util:InternetShortcut, that's what we use in our setup for url shortcuts, they use the default browser icon. -Original Message- From: Michael Janulaitis [mailto:wix-u...@cornerbowl.com] Sent: 21 November 2011 20:43 To: General discussion for Windows Installer XML

Re: [WiX-users] WiX 3.6 Project Harvesting

2011-11-22 Thread Neil Sleightholm
It is disabled for a reason, harvesting is not trivial (or straight forward) and there are all sorts of pitfalls. Personally I would avoid it, in my experience I have never found automatic harvesting to be something results in stable installs. The current implementation in Votive is only able

Re: [WiX-users] add reference to C++ project

2011-11-22 Thread RaoHuiFei
One more question, is it possible to add a file filter when harvesting a directory? For example, what if I only want to harvest files with .xtc extension? Thanks. From: dan.mad...@quanser.com To: wix-users@lists.sourceforge.net Date: Mon, 21 Nov 2011 09:55:14 -0500 Subject: Re: [WiX-users]

Re: [WiX-users] WiX 3.6 Project Harvesting

2011-11-22 Thread Dandre Jansen van Vuuren
Hi Neil Understood. I'm actually doing some work on this regard on a fork I made on codeplex. I needed to enable the harvesting on WiX 3.6 in order to test my changes. Just want to ask if doing a Pull Request is sufficient for submitting my changes to the main branch of the WiX codeset (once I'm

Re: [WiX-users] Refresh shortcut icons during setup

2011-11-22 Thread Johannes Franke
Hi David, sounds great, thank you. I didn't even know about this way to handle shortcuts. I'll give it a try and let you know if it helped. Best regards, Johannes -Ursprüngliche Nachricht- Von: David Watson [mailto:dwat...@sdl.com] Gesendet: Dienstag, 22. November 2011 11:24 An:

Re: [WiX-users] add reference to C++ project

2011-11-22 Thread Daniel Madill
Hello Huifei Rao, If you copy files to another directory prior to harvesting you can use xcopy or robocopy options to exclude files or directories when copying files over. For example, xcopy has a /exclude:file1 option where you put a list of strings in file1 (separated by newlines) and it

Re: [WiX-users] Refresh shortcut icons during setup

2011-11-22 Thread Hoover, Jacob
If util:InternetShortcut doesn't work for you, one could try a CA for refreshing the icons (I think I have seen the behavior you are describing with advertised shortcuts). [System.Runtime.InteropServices.DllImport(Shell32.dll)] private static extern int SHChangeNotify(int eventId, int flags,

Re: [WiX-users] Custom Action to verify input

2011-11-22 Thread Hoover, Jacob
The property name alone only tests to see that the property is assigned. Publish Event=SpawnDialog Order=2 Value=ConfigDlgUserInfoVerified/Publish Publish Event=NewDialog Order=3 Value=PassDlgNot UserInfoVerified/Publish should be Publish Event=SpawnDialog Order=2

Re: [WiX-users] If Bundle/@Name is empty, the bundle installer will have no title in the UI

2011-11-22 Thread Rob Mensching
This was a bug. New solution will be to mark the Bundle DisableModify and DisableRemove. That way you can keep the bundle name. On Mon, Nov 21, 2011 at 6:42 AM, Peter Bulyaki peter.buly...@gmail.comwrote: Hi, I am replying myself, I have found one possible solution. On Thu, Nov 17, 2011 at

Re: [WiX-users] Burn MBA Getting PackageName from PackageID

2011-11-22 Thread Rob Mensching
The BootstrapperApplicationData.xml file (included with your BA) should contain the mapping. On Wed, Nov 16, 2011 at 9:10 AM, Keuth Nikolaus AVL/GRZ nikolaus.ke...@avl.com wrote: Hello! Do you have any hints for me, how a can get the package names from my custom bootstrapper, to show a

Re: [WiX-users] IBootstrapperApplication::OnExecuteMsiMessage() callback suppressed?

2011-11-22 Thread Rob Mensching
It should still be sent. If not, that'd be a bug. On Mon, Nov 14, 2011 at 3:07 AM, Timo Viitaniemi timo.viitani...@crosscontrol.com wrote: Hello! I have been using OnExecuteMsiMessage() IBootstrapperApplication interface in my boostrapper application while using WiX release 3.6.2214.

Re: [WiX-users] Burn: disk space usage calculation

2011-11-22 Thread Rob Mensching
The Burn engine today does not do disk calculation. That is left to the BootstrapperApplication. On Wed, Nov 16, 2011 at 11:44 PM, Vadym Verba vve...@sdl.com wrote: Sorry for repeating, but does anyone have any clues? -Original Message- From: Vadym Verba Sent: Friday, November 11,

Re: [WiX-users] Major Upgrade - Ask user if he would like to upgrade

2011-11-22 Thread Rob Mensching
Upgrade will set a property indicating that the major upgrade is expected. You can use that to change your UI and I *think* (never tried) condition out RemoveExistingProducts appropriately. On Wed, Nov 16, 2011 at 5:23 AM, thomas.debo...@rohde-schwarz.com wrote: Hi, after some discussions

Re: [WiX-users] Failed to install WiX v3.6

2011-11-22 Thread Rob Mensching
As Bruce notes second, the log file in %TEMP% is the fastest way to figure out what went wrong. On Wed, Nov 16, 2011 at 5:03 AM, Bruce Cran br...@cran.org.uk wrote: On 16/11/2011 12:06, Harper wrote: What's wrong? How can I get information, why it failed? And how can this be fixed? One

Re: [WiX-users] How to harvest with Votive (WiX 3.6)

2011-11-22 Thread Rob Mensching
Harvesting was disabled because there were so many bugs. It's something to look at in WiX v4. On Thu, Nov 10, 2011 at 7:24 AM, David L. Beckwith beckw...@interaccess.com wrote: I've been using Votive and 3.6 to build an MSI and create a bundle with Burn. When I first started I did not see

Re: [WiX-users] Managed bootstrapper application issue

2011-11-22 Thread Rob Mensching
That sounds awfully mysterious. Have you been able to diagnose the problem any further? On Thu, Nov 10, 2011 at 2:55 AM, Nicolas Penin n.pe...@happly.fr wrote: Does no one has an idea ? Regards, Nicolas Penin -Message d'origine- De : Nicolas Penin [mailto:n.pe...@happly.fr]

Re: [WiX-users] Burn MBA Getting PackageName from

2011-11-22 Thread Keuth Nikolaus AVL/GRZ
Thanks for your answer. Do you have a short example, how I can access this from within my managed bootstrapper. Maybe you have also a hint for me how I can get an Embedded Eula.rtf, which is defined as content in my bundle authoring. Best regards Nikolaus Keuth

Re: [WiX-users] Managed bootstrapper application issue

2011-11-22 Thread Nicolas Penin
Unfortunately not :(. If it can help, I am trying on a Virtual machine on Windows 7 (both host and VM). I thought it could come from integration components since Bob Arnson directed me to a SSO issue. So I tried without activating them on the VM, with no luck. Cordialement, Nicolas Penin

Re: [WiX-users] File Element - Source attribute

2011-11-22 Thread Rob Mensching
PS: This is not a WiX limitation. It's a NETFX limitation. Paths approaching MAX_PATH (260 characters) are often causes of failures like this. On Mon, Nov 14, 2011 at 10:39 AM, John Bergman john.berg...@xpedienttechnologies.com wrote: I did it the same way you did. In my case, I had a

Re: [WiX-users] Custom Action to verify input

2011-11-22 Thread Hoover, Jacob
Argh, Having issues getting this right because I have to keep going to nabble to see your posts. (Maybe you are sending rich HTML, but something is causing the emails I get from the list to be blank.) You are still using a message box inside of your custom action, which I would strongly urge

[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] Error LGHT1055 when linking both VC100 CRT and MFC merge modules

2011-11-22 Thread Bruce Cran
Hi, I'm trying to add both the Visual C++ 2010 CRT and MFC merge modules to my project, but when I link I get: 2Product.wxs(23): error LGHT1055: The AdminUISequence table contains an action 'CA_WindowsFolder_amd64_VC.585D293E_BFCC_3045_857D_FFD4B0225AB6' which cannot be merged from

Re: [WiX-users] Burn MBA Getting PackageName from

2011-11-22 Thread jhennessey
The BootstrapperApplicationData.xml file gets extracted to the same directory as your BA. So, you could just get the directory of the current executing assembly (your BA assembly) and then load/parse the XML file. I recommend searching the %temp% directory for BootstrapperApplicationData.xml

[WiX-users] Customize Prerequisite bootstrapper

2011-11-22 Thread Sunny Li
Hi there, I'm making a managed bootstrapper with .NET 3.5 and everything is working well. However, on computers that don't have .NET installed, another bootstrapper is launched to install the .NET Framework first. That's great, but is there anyway to customize the look of the bootstrapper that

Re: [WiX-users] WiX 3.6 Project Harvesting

2011-11-22 Thread Neil Sleightholm
Wrong person to ask really, I was just giving my opinion. I raised some issues with the current implementation and personally really don't think harvesting will ever be robust. Neil -Original Message- From: Dandre Jansen van Vuuren [mailto:dandre...@gmail.com] Sent: 22 November 2011

Re: [WiX-users] Failed to install WiX v3.6

2011-11-22 Thread Andreas
I tried the install on a different machine monitoring the network traffic as well as analyzing the log file. There was a problem that the Wix36.exe failed to download ProjectAggregator2 although this was already installed. The network traffic includeded a download request for

[WiX-users] WebDirProperties - set anonymous user to Application Pool Identity

2011-11-22 Thread Dirk Räder
Hi list, I'm using Wix 3.5 to create a web application installer. Creating the application pools with the correct identities set and creating the virtual directories works fine. Configuring the WebDirProperties to either use a defined user as anonymous user by setting the attribute AnonymousUser