[WiX-users] sample

2009-03-08 Thread Tency Kuruvilla
Dear Anybody can provide me sample .wxs for install current user or all users. Thanks regards tency -- Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA -OSBC tackles the biggest issue in

Re: [WiX-users] sample

2009-03-08 Thread Eitan Behar
The property ALLUSERS determines whether the installation is per user or per machine: http://msdn.microsoft.com/en-us/library/aa367559(VS.85).aspx To set the installation always per user, do the following: Property Id=ALLUSERS Value=1 / Eitan On Sun, Mar 8, 2009 at 4:05 PM, Tency Kuruvilla

Re: [WiX-users] [Fwd: Failed to write data to metabase key.(-2147023584/LM/W3SVC/1/ )]

2009-03-08 Thread Luke Bakken
On Wed, Mar 4, 2009 at 8:04 PM, Joe Osman joe.os...@tait.co.nz wrote: I am using Windows Server 2008 and IIS 7.0 Just as a double-check, you have every IIS 6.0 metabase compatibility options checked? I believe you select it as part of Add/Remove Windows features.

Re: [WiX-users] [Fwd: Failed to write data tometabasekey.(-2147023584/LM/W3SVC/1/ )]

2009-03-08 Thread Joe Osman
Yes all the IIS 6.0 metabase compatibility options are checked. Luke Bakken wrote: On Wed, Mar 4, 2009 at 8:04 PM, Joe Osman joe.os...@tait.co.nz wrote: I am using Windows Server 2008 and IIS 7.0 Just as a double-check, you have every IIS 6.0 metabase compatibility options checked?

Re: [WiX-users] [Fwd: Failed to writedatatometabasekey.(-2147023584/LM/W3SVC/1/ )]

2009-03-08 Thread Joe Osman
I can deploy the certificate when I use the IIS Resources: SelfSSL and IISCertDeploy.vbs so it looks like a WIX issue to me. Joe Osman wrote: Yes all the IIS 6.0 metabase compatibility options are checked. Luke Bakken wrote: On Wed, Mar 4, 2009 at 8:04 PM, Joe Osman joe.os...@tait.co.nz

Re: [WiX-users] [Fwd: Failedtowritedatatometabasekey.(-2147023584/LM/W3SVC/1/ )]

2009-03-08 Thread Joe Osman
It look like that there is already an open bug on this issue: [ 2580643 ] IIS7: secure WebAddress causes install to fail Joe Osman wrote: I can deploy the certificate when I use the IIS Resources: SelfSSL and IISCertDeploy.vbs so it looks like a WIX issue to me. Joe Osman wrote: Yes all the

Re: [WiX-users] [Fwd: Failedtowritedatatometabasekey.(-2147023584/LM/W3SVC/1/ )]

2009-03-08 Thread Bob Arnson
Joe Osman wrote: It look like that there is already an open bug on this issue: [ 2580643 ] IIS7: secure WebAddress causes install to fail Please include the verbose log that Mike requested. -- sig://boB http://joyofsetup.com/

Re: [WiX-users] Detecting Server 2008 Core

2009-03-08 Thread Jeremy Farrell
http://www.letmegooglethatforyou.com/?q=Detecting+Server+2008+Core -Original Message- From: Alex Ivanoff [mailto:alex.ivan...@shavlik.com] Sent: Saturday, March 07, 2009 7:10 PM To: General discussion for Windows Installer XML toolset. Subject: [WiX-users] Detecting Server 2008 Core

Re: [WiX-users] Detecting Server 2008 Core

2009-03-08 Thread Alex Ivanoff
Actually, this is much better: http://msdn.microsoft.com/en-us/library/ms724358(VS.85).aspx. But considering the fact that I posted question on the WiX forum, and not Windows OS forums, I thought it would be clear that I was asking whether it was possible using WiX or WiX extensions.

Re: [WiX-users] Detecting Server 2008 Core

2009-03-08 Thread Olex
Perhaps by calling into vbscript custom action in WiX? On Sun, Mar 8, 2009 at 8:43 PM, Alex Ivanoff alex.ivan...@shavlik.comwrote: Actually, this is much better: http://msdn.microsoft.com/en-us/library/ms724358(VS.85).aspxhttp://msdn.microsoft.com/en-us/library/ms724358%28VS.85%29.aspx .

[WiX-users] Using WiX to create a simple website under IIS

2009-03-08 Thread Josh Santangelo
I have an application which is both a desktop app and a web app which runs locally. I've created a couple of basic WiX installers, but haven't yet used the IIS extension to create a virtual directory under IIS. I haven't been able to find a simple example of how to do this. All I need to do is

[WiX-users] Execute a powershell script in x64

2009-03-08 Thread sandun css
Hi, I need to execute a powershell script silently, at the uninstallation. I used following code for that. CustomAction Id=SetUninstallScriptParameter Property=UninstallScriptAction Value=quot;[POWERSHELLEXE]quot; [INSTALLDIR]scripts\Uninstall.ps1 Execute=immediate Return=check / CustomAction