[WiX-users] Need help with checkboxes

2006-09-07 Thread Anton Filippov
Hello all. I have some checkboxes in dialog: Launch [ProductName] as service StartServer = "0" StartServer = "1" 0 When it show on dialog, I have: LaunchServer - checked LaunchserverAsService - disabled, checked When I press LaunchServer and check it again LaunchServerAsService - c

Re: [WiX-users] Use of WindowsFolder property

2006-09-07 Thread Mike Dimmick
The element is for incorporating some binary data within your package where the Windows Installer engine can find it. The @SourceFile attribute is processed by WiX when you build the MSI, to include the file in the package.   I think you're saying you want to - presumably - run a custom act

Re: [WiX-users] Need help with checkboxes

2006-09-07 Thread Dana Gutride
Anton:Instead of using StartServer = "0"  try NOT StartServer for the condition that disables the second checkbox.  It is a little counterintuitive, but if you take a look at the MSI log, you should see that unchecking a checkbox doesn't set the value of the property to "0", it deletes it altogethe

[WiX-users] errors using light.exe on the latest stable.

2006-09-07 Thread Jarl Friis
Hi. I try out the latest version 2.0.4415. When I try out the SampleWixUI, I get lots of the following errors: light.exe : error LGHT0122 : The localization string 'ProgressTextInstallValidate' is unknown. Ensure that the localization variable $(loc.ProgressTextInstallValidate) is defined. W

Re: [WiX-users] errors using light.exe on the latest stable.

2006-09-07 Thread Bob Arnson
Jarl Friis wrote: > When I try out the SampleWixUI, I get lots of the following errors: > Which localization (.wxl) file are you using? What does your command line look like? For example, with the en_us loc file, the light command line looks like this: light my.wixobj myother.wixobj %WIX%\

[WiX-users] choosing a SQLserver instance

2006-09-07 Thread Claire Kari
Hi, my setup needs to create a SQL database and then to run scripts in it. I can see how to do that using WiX. What I cannot find is the way to get the list of SQL instances the user could connect to, in order to populate a list box in the UI. Any suggestion for that matter?   Thanks

[WiX-users] FW: choosing a SQLserver instance

2006-09-07 Thread Claire Kari
    From: Claire Kari Sent: Thursday, September 07, 2006 11:07 AM To: 'wix-users@lists.sourceforge.net' Subject: choosing a SQLserver instance   Hi, my setup needs to create a SQL database and then to run scripts in it. I can see how to do that using WiX. What I cannot find

Re: [WiX-users] Elevating custom action on Vista

2006-09-07 Thread Wilson, Phil
That's the whole point really. The general issue is that many custom actions are arguably incorrect because to access secure parts of the system they run with the installing user's privilege, who was therefore required to be privileged. The "right" thing is to run deferred with noimpersonati

[WiX-users] Error 1303. The installer has insufficient privileges to access this directory..

2006-09-07 Thread dangle123 ...
Any reason why we are getting this error even though the logged on user has admin privilege? Error 1303. The installer has insufficient privileges to access this directory: C:\Config.Msi. Thanks in advance! - Using Tomcat but

[WiX-users] error when merging with msvbvm60.msm

2006-09-07 Thread Standa Kunc
Hello, old (non-msi based) setup has these lines in log: ... ACTION: SystemFile: "C:\WINNT\SYSTEM32\MSVBVM60.DLL" (File currently on disk was already up to date) ... ACTION: DllSelfRegister: "C:\WINNT\SYSTEM32\MSVBVM60.DLL" ... I added Merge and MergeRef element to my files fragment.wxs and main

[WiX-users] merge module for olepro32.dll

2006-09-07 Thread Standa Kunc
Where can I get msm file for olepro32.dll? Thank you. S. Kunc - Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download

[WiX-users] WebDirProperties

2006-09-07 Thread Simon Burgess
Hi I’m using WiX 2.0.3719   In IIS, for a Website, there are 3 options for Execute permissions (‘none’, ‘script only’ and ‘scripts and executables’). The Execute attribute in WebDirProperties is YesNo Type – yes sets ‘scripts and executables’ no sets to ‘none’. As luck would have it, I’m

[WiX-users] Permissions for a windows service

2006-09-07 Thread Simon Burgess
Hi again   I have windows service which installs fine set to run under the Network Service account: ….. Re: [WiX-users] merge module for olepro32.dll
Standa Kunc wrote: > Where can I get msm file for olepro32.dll? Thank you. > You don't need one it exists on the base install of windows. Tony - Using Tomcat but need to do more? Need to support web services, security? Get

Re: [WiX-users] Error 1303. The installer has insufficient privilegesto access this directory..

Verify that the SYSTEM account is allowed access? Should be Full Control, I believe.   Phil Wilson From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of dangle123 ...Sent: Thursday, September 07, 2006 1:15 PMTo: wix-users@lists.sourceforge.netSubject: [WiX-users] Error 1303. The

Re: [WiX-users] Elevating custom action on Vista

Wilson, Phil wrote: That's the whole point really. The general issue is that many custom actions are arguably incorrect because to access secure parts of the system they run with the installing user's privilege, who was therefore required to be privileged. The "right" thing is to ru

Re: [WiX-users] Error 1303. The installer has insufficientprivilegesto access this directory..

It doesn't happen everytime.  It just happens sporatically though... From: "Wilson, Phil" <[EMAIL PROTECTED]>To: Subject: Re: [WiX-users] Error 1303. The installer has insufficientprivilegesto access this directory..Date: Thu, 7 Sep 2006 15:18:51 -0700MIME-Version: 1.0Received: from lists-outboun

Re: [WiX-users] errors using light.exe on the latest stable.

Bob Arnson <[EMAIL PROTECTED]> writes: > Jarl Friis wrote: >> When I try out the SampleWixUI, I get lots of the following errors: >> > Which localization (.wxl) file are you using? What does your command > line look like? For example, with the en_us loc file, the light > command line looks like th