[WiX-users] BrowseDlg issue

2010-07-09 Thread Dan Vasilov
Hello, We need help with the following scenario: we use a BrowseDlg to allow the user to select the installation path. On this dialog, if the following sequence is executed, an invalid error message appears. Sequence: - Open the BrowseDlg - Type the letter of a disk that

Re: [WiX-users] BrowseDlg issue

2010-07-09 Thread Dan Vasilov
I've found out that this behavior is by design (see http://msdn.microsoft.com/en-us/library/aa370749.aspx for information about the PathEdit control). The solution is to implement a custom Browse for Folder dialog. -Original Message- From: Dan Vasilov [mailto:d...@rms.ro] Sent: Friday,

[WiX-users] Problem in patch creation

2010-07-09 Thread Sanjay Rao
Hi, I am creating a patch for my installer. I have my base version installer and new installer. when I try to create patch, It fails(logs attached). Does anybody have any idea ? Thanks Regards, Sanjay Rao ÿþ ***** Log starting: 2010-07-09 13:17:19

Re: [WiX-users] Problem in patch creation

2010-07-09 Thread Peter Shirtcliffe
As the message suggests, PatchWiz cant create a patch when the files are compressed. You could perform an adminstrative installation of the base and target MSIs and run PatchWiz on those instead of the MSIs. -Original Message- From: Sanjay Rao [mailto:s...@noida.interrasystems.com] Sent:

[WiX-users] Logging information

2010-07-09 Thread Rahul.Ekbote
Hi, I am running following custom action which runs /RegServer command. File Id='distributeserver' Name=DISTRIBUTESERVERFILE src=f:\Program Files\Ambit ALM 6\ALMEngine\distributionserver.exe / CustomAction Id='DISTRIBUTESERVERCUSTOMACTION' FileKey='distributeserver'

[WiX-users] Registry permission for key and subkeys

2010-07-09 Thread Andreas Hirth
Hi all, I'm struggling with the task to apply security settings to a registry key. What I want to achieve is setting full access to Everyone for a registry key, and I want this being inherited. Unfortunately I only get as far as setting the full access right for Everyone on the key, but it

[WiX-users] Browse location fails if current install location is an empty CD drive.

2010-07-09 Thread Christopher Hughes
Hi, We deliver our WIX created setup packages with predefined install locations by setting the INSTALLDIR property in advance. One of our customers requires installations to be done on the D:\ drive, so we have preset the install location to D:\. However, if somebody tries to install this

[WiX-users] removing License Dialog from WixUI_InstallDir

2010-07-09 Thread subrat agasti
Hi, I removed the license dialog from the WixUI_InstallDir. but when i am running the installer i am getting the following error : The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2819. below is the

Re: [WiX-users] Registry permission for key and subkeys

2010-07-09 Thread Peter Shirtcliffe
My colleague had this same problem. If you have a limited number of keys that are known at install time, you can add them all explicitly and set permissions on them. Since we wanted the permissions to cascade down to keys created by the application and we were short of time, we used wix's qtexec

Re: [WiX-users] setting the existing apppool to my virtual directory other than than the default apppool.

2010-07-09 Thread MYFLEX
Hi yaan, thnx for you suggestion. But I did that. Then the compilation is giving the error as follows. Error 3 The iis:WebAppPool/@Identity attribute cannot be specified unless the element has a Component as an ancestor. A iis:WebAppPool that does not have a Component ancestor is not

Re: [WiX-users] Registry permission for key and subkeys

2010-07-09 Thread Andreas Hirth
That's exactly the problem. The permission must be inherited to keys created later by the application. I already have the code to put in a custom action but I try to use built-in functionality as much as possible. So I would prefer if there was a way to do it natively with Windows Installer or

Re: [WiX-users] removing License Dialog from WixUI_InstallDir

2010-07-09 Thread Neil Sleightholm
Not sure if this helps but I posted an example of doing this here: http://neilsleightholm.blogspot.com/2008/08/customised-uis-for-wix.html Neil -Original Message- From: subrat agasti [mailto:subrat.w...@gmail.com] Sent: 09 July 2010 12:25 To: wix-users@lists.sourceforge.net Subject:

Re: [WiX-users] Registry permission for key and subkeys

2010-07-09 Thread Peter Shirtcliffe
Sadly, you cant do it. Yan found the specific bit of code that causes this problem so if you are prepared to recompile wix yourself, you could make the fix. http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Registry-P ermissions-td2939332.html#a2939332 -Original Message-

Re: [WiX-users] Problem in patch creation

2010-07-09 Thread Rob Mensching
Or use the WiX v3.0+ tools instead which are far more powerful than patchwiz. On Fri, Jul 9, 2010 at 1:29 AM, Peter Shirtcliffe pshirtcli...@sdl.comwrote: As the message suggests, PatchWiz cant create a patch when the files are compressed. You could perform an adminstrative installation of the

Re: [WiX-users] Creating a patch with the Visual Studio plugin

2010-07-09 Thread Rob Mensching
You should be able to start at the torch step if you have (and you really should keep these) the MSIs and .wixpdbs from the different builds you want to patch. -- virtually, Rob Mensching - http://RobMensching.com LLC On Thu, Jul 8, 2010 at 8:42 AM, Coates, Anthony

Re: [WiX-users] Registry permission for key and subkeys

2010-07-09 Thread Andreas Hirth
Peter -- thanks for pointing that out. Obviously with this information I could fix the behavior by patching the WiX sources and building my own binaries. But looking at the current head of the 3.5 development I see the same code there as in 3.0. So I guess it is not planned to change the

Re: [WiX-users] how to select the previously installed features by default while upgrading

2010-07-09 Thread Andreas Hirth
Hello, just set MigrateFeatures=yes in your UpgradeVersion element. http://wix.sourceforge.net/manual-wix3/wix_xsd_upgradeversion.htm Andreas Hirth -Original Message- From: Sanjay Rao [mailto:s...@noida.interrasystems.com] Sent: Thursday, July 08, 2010 2:45 PM To: General

[WiX-users] WiXUI_InstallDir skipping dialogs!

2010-07-09 Thread Stelios Kyprou
Hello wix users! I have the following UI setup: !-- Use the built in WixUI_InstallDir GUI -- UIRef Id=WixUI_InstallDir / UI !-- These dialog references are needed for CloseApplication above to work correctly -- DialogRef Id=FilesInUse / DialogRef Id=MsiRMFilesInUse

Re: [WiX-users] Logging information

2010-07-09 Thread Castro, Edwin G. (Hillsboro)
Windows Installer doesn't support logging the console output of command you execute through a custom action. Consider using CAQuietExec to execute your custom action. That will do two things for you: 1.) Hide the command prompt window that shows up for console applications. 2.) Capture your

Re: [WiX-users] DTF limit on number of CA EntryPoints?

2010-07-09 Thread Jason Ginchereau
The limit of 16 is somewhat arbitrary. The way the build process works, a fixed number of entrypoints must be reserved at compile time in the sfxca.dll unmanaged stub for managed CAs. The limit can be increased by changing the sfxca.dll source code and rebuilding. The entrypoint reservations

Re: [WiX-users] Dynamic directory creation

2010-07-09 Thread Keith Hassen
Thanks for the assistance to date, it's appreciated. I'm at a point now where I've created a custom action DLL using a .NET class library that I invoke as follows: CustomAction Id=CreateDirs BinaryKey=CREATE_DIRS DllEntry=CreateDirectories Execute=immediate Return=check / Binary Id=CREATE_DIRS

Re: [WiX-users] DTF limit on number of CA EntryPoints?

2010-07-09 Thread Rob McCready
No problem. I'll throw in the EntryPoints.h/.def added entrypoints code I already did so the fix is as close to cut and paste as possible. Rob. From: jason...@microsoft.com To: wix-users@lists.sourceforge.net Date: Fri, 9 Jul 2010 21:42:50 + Subject: Re: [WiX-users] DTF

[WiX-users] COM registration of a DLL

2010-07-09 Thread David Thielen
Hi; What's the easiest way to have WIX perform COM registration of a DLL? Preferably a way where we don't have to update the file's version numbers. ??? - thanks - dave -- This SF.net email is sponsored by Sprint What

Re: [WiX-users] COM registration of a DLL

2010-07-09 Thread Blair
Use the heat tool? -Original Message- From: David Thielen [mailto:da...@windward.net] Sent: Friday, July 09, 2010 4:35 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] COM registration of a DLL Hi; What's the easiest way to have WIX perform COM registration of a DLL?

Re: [WiX-users] COM registration of a DLL

2010-07-09 Thread David Thielen
That sets the version number so we then have to update for every build. I'd prefer to avoid that. Isn't there an attribute to the file command that tells the system to register it? thanks - dave From: Blair [os...@live.com] Sent: Friday, July 09, 2010

Re: [WiX-users] Logging information

2010-07-09 Thread Rahul.Ekbote
Hi, Thanks for reply. Actually I want to register our com exe. We are using heat to create the .wxs file. It contains the information about class and interface ids but still it is not registering. We want to see our COM exes into dcomcnfg. Our COM exes only showing in dcomcinfg after using

Re: [WiX-users] patching a single file

2010-07-09 Thread MYFLEX
hi Sunkesula, Srivardhan, how your question is merged in to my query? is there any problem ? srinivas -- View this message in context:

Re: [WiX-users] webapppool to my virtual directory

2010-07-09 Thread MYFLEX
Hi , how these 2 problems merged? My problem is not solved? Any one can answer to my question please? srinivas -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/webapppool-to-my-virtual-directory-tp5242027p5276993.html Sent from the wix-users