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 not

[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 th

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 [EMA

[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, an

[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.From DatabaseDetailsDlg:This is from my Dialog follow too:11So I have got Database Name appearing in my GUI, but lets say a userchanges it to 'ThisDataba

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

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
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 new

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 PROTECTE

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. >

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

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 > w

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 element, at the top inside the tag you need to specify something

[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 B)

Re: [WiX-users] Updating app.config

2008-09-09 Thread cemiles
I haven't used Wix 2.0, but I know for sure it's in Wix 3.0. >From what I've read when I needed to use these elements, is that they look very very similar, but I think XmlConfig has a little more power and that's what I favor. derekj wrote: > > Hi, > > Just wondering if you could tell me is

Re: [WiX-users] How to invoke InstallUtil.exe

2008-09-09 Thread Richard
What's in your Installer derived class? -- "The Direct3D Graphics Pipeline" -- DirectX 9 draft available for download Legalize Adulthood! ---

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 dis

[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 with

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

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 element Platform attribute setting, i.e. is all you need or should I be using ? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jason Ginchereau Sent: Monday, September 08, 2008 10:2

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. But

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)... [INSTALLDIR] should be whatever your directoryref is to that component for the config file... And you'll probably want 2 xmlfile elements to create the 2 elements (newSection & add). I could be wrong on th

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: The user gets the app and i

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: wix-users@lists.s

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] 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.conf

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)... ... PATCH and Installed PATCH and Installed ... mailto:[EMAIL PROTECTED] On Behalf Of Pally Sandher Sent: T

[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 -

[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 couldn't

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: +

Re: [WiX-users] Quiet Execution Custom Action

2008-09-09 Thread Chad Miles
You need another CA and ditch the property... challenge > Build the coolest Linux based applications with Moblin SDK & win great > prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > __

[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 ProgramFilesFolder\Product\DOCSFOL

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 The result is same. :-( Any help on Quiet Installation?? - This SF.Net email is sponsored by the Mo

Re: [WiX-users] Custom action call problem

2008-09-09 Thread Pally Sandher
You have no inner text set for your CustomActions so they will always execute whenever the MSI is run (install, repair/upgrade & uninstall). Use Installed AND NOT REINSTALL to make it run only during uninstallation. If you only had 'Installed' in the inner text it would also run during repair/upgr

Re: [WiX-users] Quiet Execution Custom Action

2008-09-09 Thread Pally Sandher
Value="dir" means nothing. This is why it is failing. What are you trying to get it to run? 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 ** Integrated Environment

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 whic

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 ** Integrated Environmental S

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 mor

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

Re: [WiX-users] Unable to remove InstallDir

2008-09-09 Thread Ville Frantti
A little update. Found out that the problem occurs when application is uninstalled from Programs and Features. Whe uninstalled using original setup.msi the folder is removed correctly. -Alkuperäinen viesti- Lähettäjä: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Puolesta Ville Frantti Lähe

[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

[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 emp

[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: Not Installed --

[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 Y