Re: [WiX-users] Pin to Taskbar and Advertised shortcut

2010-09-11 Thread Fabio Di Lorenzo
HI Alexander, There is a kill list, do you know that? http://www.west-wind.com/weblog/posts/32765.aspx http://www.west-wind.com/weblog/posts/32765.aspxRegards, Fabio On Sat, Sep 11, 2010 at 12:34 AM, Alexander Kozlenko alexander.kozle...@hotmail.com wrote: Hello. Still can't find a solution

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

2010-09-11 Thread Fabio Di Lorenzo
Hi Ryan, It seems not be a compile error. in facts its a validation error after the compile. In my opinion everything is fine and you can use the produced msi. WiX seems to use FormattedSddl as category for this column in the validation table. But thats wrong, the correct one should be

Re: [WiX-users] Pin to Taskbar and Advertised shortcut

2010-09-11 Thread Alexander Kozlenko
Yes, I know that. But executable name doesn't include any word from this list. When I launch application I _can_ pin it from taskbar context menu. But I can't pin it from shortcut (as from Acrobat Reader or Outlook advertised shortcuts). -Original Message- From: Fabio Di Lorenzo

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

2010-09-11 Thread Alex Galperin
Hi guys! We have 2 merge modules and MSI installation with them. Each module contains component which configure IIS (application pool and web-site creation). During installation setup crashes. With error WriteIIS7ConfigChanges: Error 0x80070002: Failed get handlers section for DirProp

Re: [WiX-users] Pin to Taskbar and Advertised shortcut

2010-09-11 Thread Fabio Di Lorenzo
Hi Alexander, try the following add the following xml code before any other ShortcutProperty Elements: ShortcutProperty Key=System.AppUserModel.PreventPinning Value=0 / Does this work? Regards, Fabio On Sat, Sep 11, 2010 at 12:46 PM, Alexander Kozlenko alexander.kozle...@hotmail.com wrote:

Re: [WiX-users] How to change to a directory and run customaction inside that directory?

2010-09-11 Thread Christopher Painter
I believe that the WiX Quiet CA pattern changes the working directory to be that of the target EXE.  I'd have to mock it up to test that though.    But if it was me, I'd do some reverse engineering of what adxreg.exe is doing through some profiling and once I understood the actual setup

Re: [WiX-users] How to change to a directory and run customaction inside that directory?

2010-09-11 Thread Fabio Di Lorenzo
for that solution i'd recommend to use this tool to do a registry comparison. http://regshot.ru/ http://regshot.ru/Regards, Fabio On Sat, Sep 11, 2010 at 4:42 PM, Christopher Painter chr...@deploymentengineering.com wrote: I believe that the WiX Quiet CA pattern changes the working directory

Re: [WiX-users] How to change to a directory and run customaction inside that directory?

2010-09-11 Thread Major shao
I am having maybe a similar question here. I want to run a batch file which is at the directory where the msi is. if i use the FileKey in the customaction, how do i specify the directory in the File element for that batch file? (I do not install this batch file) Thanks Shao On Sat, Sep 11,

Re: [WiX-users] How to get the current directory of msi is running from?

2010-09-11 Thread Major shao
Jirong How did you make it work? Just use the SourceDir in the ExeCommand? where is your exe file? Is it under the directory where the msi is? Thanks Shao * * * * * * * * * * *Re: [WiX-users] How to get the current directory of msi is running from?* From: Jirong Hu jirong...@go... -

Re: [WiX-users] Pin to Taskbar and Advertised shortcut

2010-09-11 Thread Alexander Kozlenko
Hi Fabio, Thanks for code sample, but this doesn't help... Alexander Kozlenko -Original Message- From: Fabio Di Lorenzo [mailto:fa...@dilorenzo.ch] Sent: Saturday, September 11, 2010 5:31 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Pin to

Re: [WiX-users] Pin to Taskbar and Advertised shortcut

2010-09-11 Thread Fabio Di Lorenzo
Can you provide a logfile? (msiexec /i product.msi /l*v C:\log.txt) On Sat, Sep 11, 2010 at 5:36 PM, Alexander Kozlenko alexander.kozle...@hotmail.com wrote: Hi Fabio, Thanks for code sample, but this doesn't help... Alexander Kozlenko -Original Message- From: Fabio Di Lorenzo

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

2010-09-11 Thread Fabio Di Lorenzo
Hi Peter, Let me understand this correctly: You want to remove the DirectXRedist Component Folder after the installation is finished? Because its part of your installation i do not recommend to delete this folder afterwards. it's possible to do this with a custom action, but after each repair

Re: [WiX-users] Add reference in Visual Studio 10

2010-09-11 Thread Neil Sleightholm
The key has changed for vs 2010 (in fact it changed for 2008 but the old one worked). Try searching for AssemblyFoldersEx you should find the details. When I did it I found the new key didn't work for .net 2.0 projects in vs2010 and I never figured out why. Neil Neil Sleightholm

Re: [WiX-users] .Net 4 bootstrapper with Windows Imaging Component

2010-09-11 Thread Bruce Cran
On Wed, 8 Sep 2010 06:57:49 -0700 Rob Mensching r...@robmensching.com wrote: The issue you are seeing is probably the managed code not launching for some reason. There should be a log file in %TEMP% called something Wix that hopefully will pinpoint the issue. If nt, we need to add more

Re: [WiX-users] Add reference in Visual Studio 10

2010-09-11 Thread Andres Juarez
I found the info here, http://msdn.microsoft.com/en-us/library/wkze6zky(v=VS.100).aspx. It was a different key, and that works for both, VS9 and VS10 From: andresj_...@hotmail.com To: wix-users@lists.sourceforge.net Date: Fri, 10 Sep 2010 20:01:50 -0700 Subject: [WiX-users] Add reference