[WiX-users] votive query

2010-09-13 Thread Sean Farrow
Hi: Is there a way withing votive 2008/2010 to add multiple files to the installer? I don't really want to have to go through typing 99% the same code for 52 files, the only thing that will differ is the feature[s] they are added to. Regards Sean. -

Re: [WiX-users] Does Hyperlink Supported in WiX 3.5 to show in Form

2010-09-13 Thread Sascha Beaumont
Hyperlink controls were introduced with MSI 5.0. Windows Installer 5.0 is available for Microsoft Windows 7 and Windows Server 2008 R2. http://msdn.microsoft.com/en-us/library/dd407936(v=VS.85).aspx So yes, if you target MSI 5.0 and don't require installation on older operating systems. On Fri,

Re: [WiX-users] Images in my EULA missing

2010-09-13 Thread Sascha Beaumont
http://blogs.msdn.com/b/robmen/archive/2006/05/30/610950.aspx On Tue, Sep 14, 2010 at 11:05 AM, Skip Sailors wrote: > Help me understand, please. > > > > I have an EULA, written in RTF, saved using WordPad.  At the top of the > EULA is a logo that the business thinks is pretty important.  When I

[WiX-users] Images in my EULA missing

2010-09-13 Thread Skip Sailors
Help me understand, please. I have an EULA, written in RTF, saved using WordPad. At the top of the EULA is a logo that the business thinks is pretty important. When I open the file in WordPad I see the image. When the EULA shows up in the VS2008/WiX v3.0/Votive-generated installer it is bla

Re: [WiX-users] use wix to pin to taskbar and pin to start menu

2010-09-13 Thread Wilson, Phil
Try using Advertise='no' in your shortcut, if you mean that you want the shortcuts capable of being pinned. Phil Wilson -Original Message- From: bdwain [mailto:bryandw...@gmail.com] Sent: Friday, September 10, 2010 11:34 AM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users]

[WiX-users] Compile error using ManagedPipelineMode attribute

2010-09-13 Thread John L Krupka
I downloaded build 3.5.2030 to test out the ManagedPipelineMode attribute that was added to the iis AppPool element. The AppPool below gives me the following error error CNDL0038: The iis:WebAppPool/@User attribute's value, 'AdminUserReg', cannot be specified without attribute Identity presen

Re: [WiX-users] Missing Files

2010-09-13 Thread Ken Powers
Here is the product.wxs file: http://schemas.microsoft.com/wix/2006/wi";>

Re: [WiX-users] Missing Files

2010-09-13 Thread Fabio Di Lorenzo
Hi Ken, Can you please post your product.wxs? Regards, Fabio On Mon, Sep 13, 2010 at 3:35 PM, Ken Powers wrote: > I installed build 3.6.0910.0 of WiX Installer on my machine. My machine > is Window 7 and I am using Visual Studio 2010 Ultimate. I am trying to > build a project, but it will n

Re: [WiX-users] While building a project: wix200x.targets(1800, 5): error: ...Consider setting the ToolPath parameter to $(WixToolPath).

2010-09-13 Thread Fabio Di Lorenzo
Hi Dimitry, Go to C:\Program Files (x86)\MSBuild\Microsoft\WiX\v3.x (x64) or C:\Program Files (x86)\MSBuild\Microsoft\WiX\v3.x (x86) Open the "wix200x.targets" File. Search for "WixInstallRegKey". Replace any occurence of "3.5" with "3.6". Finally it should look like this: SOFTWARE\Mic

Re: [WiX-users] Wix shortcut to executable on file share

2010-09-13 Thread Fabio Di Lorenzo
Hello Tim, To avoid unecessary delays during installation (because the system service will be unable to access the UNC path during shortcut creation) i always recommend creating a stub executable which starts the executable on the server. Regards, Fabio On Mon, Sep 13, 2010 at 5:20 PM, Tim Mussc

Re: [WiX-users] Light error for COM dll with multiple prog id's for thesame class

2010-09-13 Thread Bryan Reich
It uses the id, root, key, and name, but not value. The default progId is written under the class key and the only difference is the value, so the generated ID is the same. Don't know about the resolution and what build to expect it in. Hope someone who knows more about the resolution and the bui

[WiX-users] Wix shortcut to executable on file share

2010-09-13 Thread Tim Musschoot
Hello, Is there any way to create a shortcut to an executable file that is already present, but resides on a file share (ex: \\myserver\mydir\myapp.exe). It is not a best practice, but it is a way to wrap a legacy application in a MSI package. The shortcut should be placed on the users deskt

Re: [WiX-users] Light error for COM dll with multiple prog id's for thesame class

2010-09-13 Thread Renegade Angel
The function GenerateIdentifier in CompilerCore.cs seems to generate an id based on component id, root, key and name. I have different keys I would think (one is Chilkat.AppSettings, and the other ChilkatUtil.AppSettings), however the same id's are generated. Also tried with latest 3.5 beta and 3.

[WiX-users] Missing Files

2010-09-13 Thread Ken Powers
I installed build 3.6.0910.0 of WiX Installer on my machine. My machine is Window 7 and I am using Visual Studio 2010 Ultimate. I am trying to build a project, but it will not compile because of the following errors: C:\delivery\Dev\wix36_public\src\ext\UIExtension\wixlib\ResumeDlg.wxs(18,0): e

Re: [WiX-users] When is a 64-bit install needed and heat

2010-09-13 Thread Fabio Di Lorenzo
Hi Sean, the condition "Not VersionNT64" should fullfil your request. Kind Regards, Fabio On Mon, Sep 13, 2010 at 3:33 PM, Sean Farrow wrote: > Hi: > What if, I don't want keys installed in to the 32-bit part on a 64-bit > system, is there anyway of dealing with this? > Cheers > Sean. > -Or

Re: [WiX-users] When is a 64-bit install needed and heat

2010-09-13 Thread Pally Sandher
Condition the components with "NOT VersionNT64". Palbinder Sandher Software Deployment & IT Administrator T: +44 (0) 141 945 8500 F: +44 (0) 141 945 8501 http://www.iesve.com **Design, Simulate + Innovate with the ** Integrated Environmental Solutions Limited. Registered in Scotland No. SC151

Re: [WiX-users] Light error for COM dll with multiple prog id's for thesame class

2010-09-13 Thread Bryan Reich
https://sourceforge.net/tracker/?func=detail&aid=2927773&group_id=105970&atid=642714 You may have to upgrade to newer bits or break out the second progId into its constituant registry keys outside of the class element in the wix to work around the bug. -- Bryan _

Re: [WiX-users] Light error for COM dll with multiple prog id's for thesame class

2010-09-13 Thread Pally Sandher
Ah my apologies. I haven't looked at the Registry Table in a built MSI using InstEd or Orca in a while so I hadn't noticed the auto generated Id's in there for Class & Prog ID's. To the best of my knowledge, WiX generates those ID's using some algorithm which is almost guaranteed to generate the s

Re: [WiX-users] When is a 64-bit install needed and heat

2010-09-13 Thread Sean Farrow
Hi: What if, I don't want keys installed in to the 32-bit part on a 64-bit system, is there anyway of dealing with this? Cheers Sean. -Original Message- From: Fabio Di Lorenzo [mailto:fa...@dilorenzo.ch] Sent: 13 September 2010 11:59 To: General discussion for Windows Installer XML tools

Re: [WiX-users] Light error for COM dll with multiple prog id's for thesame class

2010-09-13 Thread Renegade Angel
As it appears I'm already using heat with the -suid switch. The reg06989... seems to be an id that is generated by candle, I can only find it in setup.wixobj. Should I post process the obj file and change certain id's and enforce uniqueness to fix this ? Thanks, JB 2010/9/13 Pally Sandher > Tr

Re: [WiX-users] When is a 64-bit install needed and heat

2010-09-13 Thread Fabio Di Lorenzo
You need to create 2 components: "x64Component" containing all keys which should go to the x64 view with "VersionNT64" as condition And x32Component containing all keys which should go the x32 view on a x64 system OR for a native x32 system. Kind Regards, Fabio Di Lorenzo On Mon, Sep 13, 2010

[WiX-users] Change the Foreground color of the label

2010-09-13 Thread Velu
Hi How to change the foreground color of the label box in the Wix. I have created the TextStyle like this and used in the Dialogs. But, still the forecolor is Black. Still color of the label text is Black. Is any workaround to achieve this ? Thanks, Velusamy -- View this message in co

Re: [WiX-users] When is a 64-bit install needed and heat

2010-09-13 Thread fiordean dacian
Hello "Therefore you can create hybrid installers as long as you dont need to install files to the "System64Folder"." And how do you exactly do that? Say you have a 32 bit component which needs to install correctly on both 32 bit and 64 bit. Specifying the component as a "x64 component" will s

Re: [WiX-users] Checking whether a custom application is installed

2010-09-13 Thread Pally Sandher
Most people use a LaunchCondition (http://wix.sourceforge.net/manual-wix3/wix_xsd_condition.htm) checking a Property (http://wix.sourceforge.net/manual-wix3/wix_xsd_property.htm) filled by a RegistrySearch -> http://wix.sourceforge.net/manual-wix3/wix_xsd_registrysearch.htm If you can't use Registr

[WiX-users] Checking whether a custom application is installed

2010-09-13 Thread jamie benson
Hi all, Is there a way to check whether a custom application is installed on the machine (either in registry or by Add/Remove Programs) programmatically from within WIX? Regards, Jamie -- Start uncovering the many advanta

Re: [WiX-users] Howto remove files before Installer terminates

2010-09-13 Thread Pally Sandher
Bootstrap it as a pre-requisite instead & save yourself the hassle. Any half-decent bootstrapper will do exactly that & your installer will never have to even know about DirectX other than maybe a LaunchCondition to check it is installed. See dotnetinstaller -> http://dotnetinstaller.codeplex.c

Re: [WiX-users] Light error for COM dll with multiple prog id's for thesame class

2010-09-13 Thread Pally Sandher
Try using the -suid switch when you run heat to get more readable ID's generated rather than 'reg06989E0C50B7888525E711A46A9A609B'. The code you've pasted isn't the problem. The error message says you've got duplicated Id's in the RegistryTable, it has nothing to do with Class & Prog Id's. Make sur

[WiX-users] Light error for COM dll with multiple prog id's for the same class

2010-09-13 Thread Renegade Angel
Dear all, I've been dealing with this issue when using heat to generate the registry information for COM-dll's. (I'm running 3.0.5419.0 of the WiX toolset) For instance: Running heat on the file ChilKatUtil.dll results in: ... * * * * *

[WiX-users] While building a project: wix200x.targets(1800, 5): error: ...Consider setting the ToolPath parameter to $(WixToolPath).

2010-09-13 Thread Dmitry MINICH
Hello List, After update from v3.5.2013.0(or v3.5.2110.0) to v3.6.0910.0 the following error appears while trying to build MSM project in MSVS 2005 SP1: C:\Program Files\MSBuild\Microsoft\WiX\v3.x\wix200x.targets(1800,5): error : Unable to load tool from path file:///D:\WORK\MyProject_MSM\

Re: [WiX-users] Uninstalling Windows application

2010-09-13 Thread michal zobec, lightning group company (www.lightninggroup.org)
Hi Svatja, Its simple: 1) Installation per machine - for all users. 2) Installation per user - for only one user. Installer don't check other users profiles for lost (or unused) shortcuts, its only delete shortcuts from active user profile (when uninstalling). Your plan for use install and unins

Re: [WiX-users] How to uninstall and create GUI using Votive 3.0

2010-09-13 Thread Fabio Di Lorenzo
Hi Karthik, This site is maybe helpful for you: http://wix.sourceforge.net/manual-wix3/WixUI_dialog_library.htm Regards, Fabio On Mon, Sep 13, 2010 at 8:29 AM, Karthik Saligram < karthik.salig...@lntemsys.com> wrote: > Hi, > >

Re: [WiX-users] Uninstalling Windows application

2010-09-13 Thread Fabio Di Lorenzo
if you'd like to have a per user installation, you need to install your files to a per user location. otherwise you'll run against this effect. Currently your shortcuts are installed per user, but the files are in an "all users" location. Read more about the ALLUSERS Property and its effects here

Re: [WiX-users] When is a 64-bit install needed and heat

2010-09-13 Thread Fabio Di Lorenzo
Hi Sean, >If I'm adding items to the registry in the hkey_classes_root hive do I need both a 32-bit and 64-bit installer. Where the registry keys are going is component dependent. You can simply mark a component as x64 Bit component and those registry keys will be written to the "x64 View". The

Re: [WiX-users] Howto remove files before Installer terminates

2010-09-13 Thread Peter Enz
Hi Fabio, thank you for your response. >> Let me understand this correctly: You want to remove the "DirectXRedist" Component & Folder after the installation is finished? That’s right. Nearly 100 MB seems to me as too much to be left on the customer's machine. So I will write a little program, wh

Re: [WiX-users] Compiler error with PermissionEx (non-util version)

2010-09-13 Thread Fabio Di Lorenzo
Bug 3065075 Opened. Regards, Fabio On Sun, Sep 12, 2010 at 1:33 AM, Bob Arnson wrote: > On 11-Sep-10 06:18, Fabio Di Lorenzo wrote: > > WiX seems to use "FormattedSddl" as category for this column in the > > validation table. > > > > But thats wrong, the correct one should be "FormattedSDDLTex

Re: [WiX-users] IIS7 crash during installation of 2 web sites

2010-09-13 Thread Alex Galperin
Yes we are using Wix v3.5.2103. I've already opened bug with ID 3064181. Thank you for you reply On Mon, Sep 13, 2010 at 4:35 AM, Rob Mensching wrote: > If this is using the latest version of WiX v3.5, please open a bug. > > On Sat, Sep 11, 2010 at 4:43 AM, Alex Galperin >wrote: > > > Hi guys!