[WiX-users] Building Solution Projects

2010-12-15 Thread Alper ÖZGÜR
Hi; I need help about building the projects in the solution. Some projects has referenced to the same projects (xxBLL has reference to the xxDAL project, yyBLL project has reference to the xxDAL project too). The problem is when i start to building and creating msi for the solution it builds xxDAL

[WiX-users] Setting a property through a custom action

2010-12-15 Thread Frédéric Viollet
Hi all, I've been struggling for two days trying to achieve something that I believe simple (obvioulsy not for me...) Here's some part of my code: Directory Id=TARGETDIR Name=SourceDir Directory Id='ProgramFilesFolder' Name='PFiles' Directory Id=MyCompany Name=Company Directory

[WiX-users] Disabling application restart upon updates

2010-12-15 Thread CP YEH
Hi All, My installer consists of dll library that is being used by several applications and when we update this dll on Windows 2008, I noted that Restart manager kicks in and restarts those apps that use our dll. However, we would like to disable this behavior and I found that I can probably do

Re: [WiX-users] Upgrade to wix 3.5 doesn't honourtheprod...@codepage

2010-12-15 Thread Rob Mensching
A few things: 1. You are correct that, WixUI no longer supports codepage 0. Arguably codepage 1252 is more correct since we just writing English and have not done the work to ensure everything is ASCII. So this isn't a bug we'll address in WiX v3.5 because we are in escrow and there is a

Re: [WiX-users] Upgrade to wix 3.5 doesn't honourtheprod...@codepage

2010-12-15 Thread David Watson
Cheers Rob. It's pretty much what we thought and as I said before we don't really use the functionality of having a language neutral MSI so it's not impacting us, we were always doing it just in case. I don't think 1252 will be an issue for us in future. I was just concerned that other people

[WiX-users] Running VBScript in Custom Action

2010-12-15 Thread sangeeta1
Hi, I have a vbscript to validate the user in AD and I am having trouble running it in the custom Action. Can someone point out mistakes in implementing the custom action. I am not a vbscript expert here so please pardon my ignorance. log Action 11:42:48: CheckUserExists. Action start

[WiX-users] Running vbscript in customaction

2010-12-15 Thread sangeeta1
Hi, I have a vbscript to validate the user in AD and I am having trouble running it in the custom Action. Can someone point out mistakes in implementing the custom action. I am not a vbscript expert here so please pardon my ignorance. log Action 11:42:48: CheckUserExists. Action

Re: [WiX-users] Building Solution Projects

2010-12-15 Thread Castro, Edwin G. (Hillsboro)
Sounds like all your projects are in the same solution. Are you building each project separately? If you build your entire solution at one time, then the dependent projects should only build once. If you build them separately, then MSBuild doesn't know whether the dependent projects were

Re: [WiX-users] Running vbscript in customaction

2010-12-15 Thread Wilson, Phil
There is no WScript object in Windows Installer. As its name implies, the Wscript object is supplied by the Windows Script Host environment, and you're not running in there. Just use CreateObject(). Phil Wilson -Original Message- From: sangeeta1 [mailto:snmsn...@gmail.com] Sent:

Re: [WiX-users] Check if user exists in UI

2010-12-15 Thread sangeeta1
Hi, I have a vbscript to validate the user in AD and I am having trouble running it in the custom Action. Can someone point out mistakes in implementing the custom action. I am not a vbscript expert here so please pardon my ignorance. log Action 11:42:48: CheckUserExists. Action start

Re: [WiX-users] How to write conditions for 'Change' mode

2010-12-15 Thread little.forest
I'm not sure if the email was sent correctly or not. Just resend it. ~~ Thanks Blair. It's in InstallExecuteSequence. And it's before InstallFinalize. Here's the code: CustomAction Id=DoDllRegistration FileKey=FileRegistrator ExeCommand=/r Execute=deferred Return=ignore HideTarget=no

Re: [WiX-users] Check if user exists in UI

2010-12-15 Thread Wilson, Phil
Are you getting the replies? Reading them? Same answer as before - you can't use WScript in a CA. Phil Wilson -Original Message- From: sangeeta1 [mailto:snmsn...@gmail.com] Sent: Wednesday, December 15, 2010 9:57 AM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Check

Re: [WiX-users] Running vbscript in customaction

2010-12-15 Thread Tobias S
Did you have a look at http://msiext.codeplex.com/ (http://msiext.codeplex.com/). At first glance this function seems to fulfill the needed functionality and also without the ugly way of using VBScript:

Re: [WiX-users] Connect BrowseDlg to PathEdit and PushButton

2010-12-15 Thread macky
Igor, Were you able to resolve this issue? I'm trying to do the exact same thing. In my case the browsedlg is not showing either though. Please post your solution. Thanks, Macky -- View this message in context:

[WiX-users] Selectively updating app.config

2010-12-15 Thread Matt Siebert
Hi all, I need to selectively update an app.config file from my setup package. Specifically, I need to set a single attribute if it doesn't exist or has an empty string value. If it already has some other value then I need to leave it unchanged. What's the preferred way to do this? I've

Re: [WiX-users] Building Solution Projects

2010-12-15 Thread alpozgur
Have got 4 solution and in every solution i have shared projects. Is there a way to set a ticket for it? On Dec 15, 2010 7:28pm, Castro, Edwin G. (Hillsboro) edwin.cas...@fiserv.com wrote: Sounds like all your projects are in the same solution. Are you building each project separately?