[WiX-users] Create Website on Remote Machine

2008-09-09 Thread pavan gadam
Hi all, Is it possible to create a Website on remote machine from Wix using IISExtension? I also want to add some webservices into website in the remote machine. Thanks, Pavan - This SF.Net email is sponsored by the Moblin

[WiX-users] custom action- how can i know if succeeded ?

2008-09-09 Thread Yuval David
Hi, I have a CA that I need to know if it succeeded or not, The returned value is ignore but I need to know The value of InstallD after the execution. How can I know? This is the code: CustomAction Id= InstallD BinaryKey='CA' VBScriptCall='DriverInstall' Return='ignore'

[WiX-users] Unable to remove InstallDir

2008-09-09 Thread Ville Frantti
Hi. I'm trying to get my application a Windows Vista Certification and had to make some minor (mainly UpgradeVersion tag) changes to my install package. As a result I've stumbled upon this weird thing that when application is uninstalled on Vista, the InstallDir is not removed even if it's

[WiX-users] Dropping the BOM

2008-09-09 Thread Martin Lavelle
Hello, The Byte Order Mark is removed from xml text files when WiX XmlConfig editing is applied. I've just found this out the hard way, as it breaks some DotNet programs (I imagine it depends on the methods used to address the data). I've created bug 2101670 for this. Any chance of a quick fix?

Re: [WiX-users] does running upgrade msi or patch msi still require additional command line switches?

2008-09-09 Thread Pally Sandher
Bob Arnson wrote: Robert O'Brien wrote: q2 - do the same REINSTALLMODE switch settings apply when trying to use a patch to carry out a minor or major upgrade? Yes, though usually MSI picks the right values for you. Though patches aren't generally double-click installable; you usually need to

Re: [WiX-users] Patch msi does not remove old files

2008-09-09 Thread Pally Sandher
The MSI only does what you tell it to do. I had the same issue when I created my first MSP. You need to modify your code that generates dummy1.msi so that all the files you're removing have RemoveFile tags specified for them. Simply deleting the File tags from your code isn't enough (I find it

Re: [WiX-users] custom action- how can i know if succeeded ?

2008-09-09 Thread Pally Sandher
Change it from ignore to check as it says in the documentation for the CustomAction tag. Palbinder Sandher Software Deployment and IT Administrator T: +44 (0) 141 945 8500 F: +44 (0) 141 945 8501 http://www.iesve.com **Design, Simulate + Innovate with the Virtual Environment** Integrated

Re: [WiX-users] Unable to remove InstallDir

2008-09-09 Thread Pally Sandher
Sounds like it could be an issue with a service on Vista. Most likely to be something to do with indexing or searching. I'm not 100% up to speed with all the new features in Vista but I might see if our releases also exhibit this behaviour. Our Vista Virtual Machines have SP1 applied though

Re: [WiX-users] Quiet Execution Custom Action

2008-09-09 Thread pavan gadam
Even when i tried with notepad.exe my installation failed. :-( Actually i need a call powershell psexec.exe I tried with Property Id=QtExecCmdLine Value=psexec.exe \\192.168.1.2 -c WebsiteInstall.exe/ The result is same. :-( Any help on Quiet Installation??

[WiX-users] Getting actual directory table and file location

2008-09-09 Thread Eitan Behar
Hi, I am trying to get a list of directories/files within a MSI file using WIX's DTF. But, when using InstallPathMap, I get the Directory and Files maps, they show the property names instead of the actual values. i.e. ProgramFilesFolder\Product\bin\file.exe or

Re: [WiX-users] Quiet Execution Custom Action

2008-09-09 Thread Chad Miles
You need another CA and ditch the property... CustomAction Id=SetAction7 Property=QtExecCmdLine Value='? / CustomAction Id=Action7 BinaryKey=WixCA DllEntry=CAQuietExec Execute=immediate / Then you need to schedule it something like this... Custom Action=SetAction7

Re: [WiX-users] Quiet Execution Custom Action

2008-09-09 Thread Pally Sandher
As stated before Value=notepad.exe Value=psexec.exe \\192.168.1.2 -c WebsiteInstall.exe mean nothing to the Windows Installer which is why your installation fails. Value=C:\Windows\notepad.exe might give you better results. Palbinder Sandher Software Deployment and IT Administrator T: +44 (0)

[WiX-users] Updating app.config

2008-09-09 Thread polan
I have some application settings (like database configuration etc.) stored in app.config file. As it is a standard .Net approach i haven't expected any troubles with this and installer. I would like to make the newest version of the program available to the users via wix installer, but I

[WiX-users] IIS 32-bit vs 64-bit install options

2008-09-09 Thread Morris, John - Raleigh
We have an application that needs to be installed on IIS. It is 32-bit and needs to have the enable32BitAppOnWin64 setting toggle to true. How can this be done using the Wix IIS extension, or do we need to stick with a custom action call to the appcmd.exe utility? Thanks, John

Re: [WiX-users] does running upgrade msi or patch msi still require additional command line switches?

2008-09-09 Thread John Nannenga
In our installs, we don't utilize a patch wrapper. Instead, we set the REINSTALL and REINSTALLMODES appropriately within our installation(s)... CustomAction Id='Patch_SetReinstall' Property='REINSTALL'Value='ALL'/ CustomAction

Re: [WiX-users] Updating app.config

2008-09-09 Thread Chad Miles
You can update the config file during the UI sequence and modify keys/values. Is that all you're trying to do? util:xmlconfig element On Tue, Sep 9, 2008 at 10:26 AM, polan [EMAIL PROTECTED] wrote: I have some application settings (like database configuration etc.) stored in app.config

Re: [WiX-users] Updating app.config

2008-09-09 Thread Chad Miles
You'll probably have to write up a dialog and have some edit fields set to properties and pass those values entered onto the util:xmlconfig element. That's been my approach. Maybe I'm on the wrong track on what you are trying to do... On Tue, Sep 9, 2008 at 10:32 AM, Chad Miles [EMAIL PROTECTED]

Re: [WiX-users] Add reference to setup project in Visual Studio 2008

2008-09-09 Thread Jason Ding
Thanks Justin. But how can I add the reference of my Existing application to my setup? Do you have other ideas I can try? Thanks. Jason -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Justin Rockwood Sent: September 8, 2008 5:58 PM To:

Re: [WiX-users] Updating app.config

2008-09-09 Thread polan
Thx for your fast answer Ok - sorry for the unclear description. I didn't want to make it long - let's do it more descriptive: Here's the scenario (I'll use simplify pseudo code for the app.config): I have my application version 1.0.0 with app.config: configuration databaseConfig add

Re: [WiX-users] Updating app.config

2008-09-09 Thread Chad Miles
1) I'll try and do you one better. Here's how I update a specifc node (key or value)... util:XmlConfig Id=SetPort Action=create Node=value Name=value ElementPath=//appSettings/[EMAIL PROTECTED]'port'[\]] VerifyPath=//appSettings/[EMAIL PROTECTED]'port'[\]] Sequence=1 File=[INSTALLDIR]Web.config

Re: [WiX-users] Add reference to setup project in Visual Studio 2008

2008-09-09 Thread Jason Ding
Please ignore this question. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jason Ding Sent: September 9, 2008 8:58 AM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Add reference to setup project in Visual Studio 2008 Thanks Justin.

Re: [WiX-users] using a Variable for Plaform setting causes undesired build warning

2008-09-09 Thread Robert O'Brien
Thanks and just to confirm that when doing this you no longer need the Package / element Platform attribute setting, i.e. Package InstallerVersion=200 Compressed=yes / is all you need or should I be using Package InstallerVersion=200 Compressed=yes Platform=$(var.Platform) / ? -Original

Re: [WiX-users] does running upgrade msi or patch msi still require additional command line switches?

2008-09-09 Thread Robert O'Brien
Awesome thanks...so with this in place one should be able to just double click on the My deliverable Small Update or Minor Upgrade Patch.msp and get the desired result? To set these required flags in the case of using a My Deliverable Small Update or Minor Upgrade.msi approach to update an

[WiX-users] How to invoke InstallUtil.exe

2008-09-09 Thread Sandeep Gautam (HCL Technologies Ltd)
Hi , I want to invoke installUtil.exe. How can I do the same. Thanks in advance. Regards Sandeep - This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications

Re: [WiX-users] using a Variable for Plaform setting causes undesired build warning

2008-09-09 Thread Jason Ginchereau
Yes, you can omit the Package.Platform attribute from the code if you want it to always follow the project's platform configuration. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Robert O'Brien Sent: Tuesday, September 09, 2008 10:42 AM To: 'General

[WiX-users] Re mote SQL Authentication

2008-09-09 Thread cemiles
If anyone has come across this let me know. I can post my code if so, hopefully for a little advice because I'm between a rock and a hard-place. I need to run my install on a machine (Server A), and need to use sql authentication to grab a user w/ sysadmin rights on the remote machine (Server

Re: [WiX-users] New to WiX... first Error Message.. Need Help...

2008-09-09 Thread cemiles
I saw the whole gaming extension thing in the latest wix v3 chum file a few weeks ago. My chum file isn't quite up to date, but I think I know what's going on here. It's worth a shot... Ok, in the wxs file where you declared the Game element, at the top inside the Wix tag you need to specify

Re: [WiX-users] New to WiX... first Error Message.. Need Help...

2008-09-09 Thread cemiles
xmlns = xmlnamespace... you'd run along the same thing if you wanted to use the util/sql/etc. schemas. need to declare them. cemiles wrote: I saw the whole gaming extension thing in the latest wix v3 chum file a few weeks ago. My chum file isn't quite up to date, but I think I know

Re: [WiX-users] Question about linking custom action dll

2008-09-09 Thread Radha Vaidyanathan
Bob - I managed to build dutil, wcautil libs under VS2005 and get a hello world custom action Working. Now the real work.. I need to pass a couple of parameters to the action routine. I understand that the easiest way is to set some Property values that can be

Re: [WiX-users] New to WiX... first Error Message.. Need Help...

2008-09-09 Thread CavanMcCloud
CavanMcCloud wrote: Need help with an error message... error CNDL0200 : The File element contains an unhandled extension element 'gaming:Game'. Please ensure that the extension for elements in the 'http://schemas.microsoft.com/wix/GamingExtension' namespace has been provided. Any

Re: [WiX-users] Re mote SQL Authentication

2008-09-09 Thread David Reed (SQL)
If the identity running the installation doesn't have sysadmin privileges, you're not going to be able to grant anything to yourself... Maybe I'm not understanding the workflow that you're trying to achieve. We can take it offline if you like. -Original Message- From: [EMAIL

Re: [WiX-users] Re mote SQL Authentication

2008-09-09 Thread Troy Howard
Seems like the workflow is: 1. Connect to Server B (sql server) using an existing sql login (not windows), that has less than admin level rights (configured where? created when?). 2. Somehow obtain different credentials from Server B that have administrative rights on Server B. 3. Connect with

Re: [WiX-users] Re mote SQL Authentication

2008-09-09 Thread cemiles
I think you're right on the money Troy, and I'll try what you're suggesting and spend some time because that sounds like a very good idea. I'd like to try and simplify the steps you outline down to what I've mentioned below... if that sounds plausible to you guys (I'm asking, because I think the

Re: [WiX-users] Re mote SQL Authentication

2008-09-09 Thread Troy Howard
Yes, if your end goal is just to install the database and give the user that's running the installation ownership to it and login rights, then those three steps would do it (though you're missing the user enters sa account credentials, and server/instance name in custom installer dialog... You of

[WiX-users] Help with GUI and Setting Properties

2008-09-09 Thread Marty Dalton
Hey, I have got my GUI all set up and working. My only problem I can notwork out is how do I set text entered by a user back into my property.Property Id=DatabaseName Value=Database Name/From DatabaseDetailsDlg:Control Id=DatabaseLabel Type=Text X=20 Y=180 Width=290 Height=18 NoPrefix=yes

[WiX-users] Multiple location install

2008-09-09 Thread Alvin Moser
Hi, I've recently become the new go to guy when it comes to wixs at my work. Unfortunetly I've stumbled upon a new problem that I can't figure out and was wondering if someone could help. What I'm trying to accomplish is to install the main section of my program in a user definable directory, and

Re: [WiX-users] Multiple location install

2008-09-09 Thread John Nannenga
How are your features configured? Pay particular attention to the Feature.Directory_ column of the Feature table... ref: http://msdn.microsoft.com/en-us/library/aa368585(VS.85).aspx From: [EMAIL PROTECTED] [EMAIL PROTECTED] On Behalf Of Alvin Moser

[WiX-users] Issue with uninstall the windows service MSI

2008-09-09 Thread Balamurugan Shanmugam
Hi, I am using WIX 3.0 to create the MSI for windows service application. My MSI is working fine with install and but during uninstall all the related binaries/folders/files are getting removed perfectly except the service is not getting removed from the services console. After looking into

Re: [WiX-users] does running upgrade msi or patch msi still require additional command line switches?

2008-09-09 Thread John Nannenga
That's correct, with this in place you should be able to double click your MSP and get the desired results (it's how I do it, anyways). Regarding a REINSTALLMODE of vomus vs. omus, I can only really point to the MSI documentation. For a patch, it notes omus. For the msi approach, it notes