Re: [WiX-users] Msbuild/Votive Change WIX Path

2010-02-04 Thread INRO(Robert Inzinger)
Hi Sorry I need more help, please I have an old and working installation with Wix 3.0. this works fine For new installation projects now I use wix 3.5. If I try to build the old installation project with msbuild the version 3.5 is used. I copied the old wix version in a seperate directory and cha

Re: [WiX-users] Storing variale value after installation

2010-02-04 Thread vunder
It's only some string value. My program requires quoted string values in registry. At installation I entering some value in edit and then it must be written in registry with quotes. But default value of edit control must be read from registry, where it written with quotes. I need read those value,

Re: [WiX-users] Do not remove some files on major upgrade

2010-02-04 Thread vunder
I have a component with only one file in it. At first install file must be installed. At upgrade it does not need to be installed. Component has the same GUID in two installation packages, what differs by version. RemoveExistingProducts placed in InstallExecuteSequence: -- View

Re: [WiX-users] First user impressions and questions

2010-02-04 Thread Matteo Nicolotti
Thanks for the advices, Is a bootstrapper able to merge in one single file both the game installer and the .net installer? I wish to ask just because this is the master feature i'm looking for and i actually don't know what a bootstrapper is... Could you please explain how a bootstrapper is

Re: [WiX-users] First user impressions and questions

2010-02-04 Thread Ryan O'Neill
Yes, a bootstrapper will do that. Have a search for the GenerateBootstrapper task in MS Build as I find that the easiest to use. On 4 Feb 2010, at 10:33, Matteo Nicolotti wrote: > > Thanks for the advices, > Is a bootstrapper able to merge in one single file both the game > installer and t

[WiX-users] Pinging again :- Refresh Edit Box Control

2010-02-04 Thread bibhash phukon
Hi, Is there any way to refresh the Edit box control, so as to set text from a custom action and avoid another identical dialog box. Thanks Bibhash Phukon.. -- The Planet: dedicated and managed hosting, cloud storage

Re: [WiX-users] Is dark broken?

2010-02-04 Thread Houston,Jerry
Sorry, Rob, I've been putting out fires and haven't gotten back to the list until now. I assume that by this time, the problem's been discovered by others and yet another bug report would just add to the clutter. Anyone who's tried using dark should have had the same results I did. -Original

[WiX-users] Fwd: Get property for Repair mode !

2010-02-04 Thread bibhash phukon
Hi, Is there any property so as to detect repair mode. I need to launch a dialog box when the Repair button is clicked from add & remove programs. Thanks Bibhash Phukon. -- The Planet: dedicated and managed hosting,

Re: [WiX-users] Msbuild/Votive Change WIX Path

2010-02-04 Thread Brian Rogers
Try $(WixToolPath) instead. Brian Rogers "Intelligence removes complexity." - Me http://blogs.msdn.com/icumove <-- NEW On Thu, Feb 4, 2010 at 12:13 AM, INRO(Robert Inzinger) < robert.inzin...@skidata.com> wrote: > Hi > > Sorry I need more help, please > I have an old and working installation wi

Re: [WiX-users] Fwd: Get property for Repair mode !

2010-02-04 Thread Rob Mensching
"Installed" sounds like what you want. On Thu, Feb 4, 2010 at 5:28 AM, bibhash phukon wrote: > Hi, > >Is there any property so as to detect repair mode. I need to launch a > dialog box when the Repair button is clicked from add & remove programs. > > Thanks > > Bibhash Phukon. > > --

Re: [WiX-users] Is dark broken?

2010-02-04 Thread Rob Mensching
As far as I know, no one else has seen the issue you describe. It is very likely there is something unique to the MSI you have that dark does not like and we need to teach dark to handle it. I just don't know what that is. On Thu, Feb 4, 2010 at 4:49 AM, Houston,Jerry wrote: > Sorry, Rob, I've

Re: [WiX-users] Refreshing values on DialogBox

2010-02-04 Thread Rob Mensching
Based on conversation I've seen here in the past, I think the answer is (sadly) no. On Tue, Feb 2, 2010 at 5:58 PM, Sachin Dubey wrote: > > Hi All, > > Is there any for refreshing the list box values on a dialog box on a button > click. I want to avoid using another identical dialog. > > > > > >

Re: [WiX-users] Custom Action Condition Question

2010-02-04 Thread Rob Mensching
It is unusual to have custom actions associated with Features.Typically, custom actions should be associated with Components because Components are the unit of change in the Windows Installer. If you look at the WiX custom actions, you'll see all of their state changes are based off of Component st

[WiX-users] Get property for Repair mode !

2010-02-04 Thread bibhash phukon
Hi, Is there any property so as to detect repair mode. I need to launch a dialog box when the Repair button is clicked from add & remove programs. Thanks Bibhash Phukon. -- The Planet: dedicated and managed hosting,

[WiX-users] Using to resolve ICE03 error results in LGHT0094 error

2010-02-04 Thread Jordan.R.Day
Hi, I'm using an older Crystal Reports merge module (CrystalReports10_NET_EmbeddedReporting.msm) which apparently wasn't built to spec, which initially resulted in a bunch of ICE03 (along with some other) errors, mostly like: error LGHT0204: ICE03: Table: CrystalRedirection Column: Directory Mi

[WiX-users] adding a folder in the start menu

2010-02-04 Thread Sam Strasser
Hello, I am installing an SDK and I would like to put a folder in the start menu which has two entries: a shortcut to the folder I installed to, and a shortcut to a .chm help file. I am able to get both shortcuts to appear in the start menu, but they appear as standalone links, and not in the

[WiX-users] adding a folder in the start menu

2010-02-04 Thread Sam Strasser
Hello, I am installing an SDK and I would like to put a folder in the start menu which has two entries: a shortcut to the folder I installed to, and a shortcut to a .chm help file. I am able to get both shortcuts to appear in the start menu, but they appear as standalone links, and not in the

Re: [WiX-users] Msbuild/Votive Change WIX Path

2010-02-04 Thread Tony Paloma
You'll need to set both WixTasksPath and WixTargetsPath. They need to point to the WixTasks.dll and Wix.targets file respectively. Try: /p:WixTasksPath=C:\wix3.0\bin\WixTasks.dll /p:WixTargetsPath=C:\wix3.0\bin\Wix.targets Normally these files don't get installed to the WiX installation director

Re: [WiX-users] Msbuild/Votive Change WIX Path

2010-02-04 Thread Tony Paloma
You should also set WixToolPath (like Brian mentioned) to where you have WiX 3.0 tools installed (which in your case seems to be C:\wix3.0\bin). -Original Message- From: Tony Paloma Sent: Thursday, February 04, 2010 10:32 AM To: General discussion for Windows Installer XML toolset. Subje

Re: [WiX-users] Is dark broken?

2010-02-04 Thread Houston,Jerry
I realize now that you were talking about the MSI that dark.exe couldn't handle, not the MSI that I installed dark from. Thinking that it might be fixed in a later version, I downloaded the newest weekly 3.5b, but that raised the same error. I've built a plain-vanilla test app, with a Visual Stud

Re: [WiX-users] Is dark broken?

2010-02-04 Thread Houston,Jerry
Nevermind. I found the link to add a bug, and was told that only members of the project can do that, and that I'm not a member. And I thought this was gonna be easy ... Jerry -Original Message- From: Houston,Jerry [mailto:jhous...@vertafore.com] Sent: Thursday, February 04, 2010

Re: [WiX-users] How to rename an existing file after installation(major upgrade)?

2010-02-04 Thread Nathan Stohlmann
First, I think Yan has the right idea, this is something that should probably be done in the app. However, the reason the CA is not working is because "rename" is not actually an application in modern versions of Windows and you must point to an actual executable in order for it to work. When Mic

Re: [WiX-users] Is dark broken?

2010-02-04 Thread Houston,Jerry
I finally found the right link, and submitted an "artifact" describing the problem. I tried to attach the little MSI that I created, but was told that 256K was the limit. I zipped the file, rewrote the report, and submitted it. Jerry -Original Message- From: Houston,Jerry [mailt

[WiX-users] First user impressions and questions

2010-02-04 Thread DE�K JAHN, G�bor
On Thu, 4 Feb 2010 10:33:49 +, Matteo Nicolotti wrote: Matteo, > Is a bootstrapper able to merge in one single file both the game > installer and the .net installer? Theoretically, yes. But the last time I checked, MS insisted on the .NET Framework to be distributed in its original EXE form

Re: [WiX-users] How to rename an existing file after installation(major upgrade)?

2010-02-04 Thread Blair
"cmd.exe /c ren "C:\Program Files\MyApp\Devcie.txt" Device.txt" -Original Message- From: Nathan Stohlmann [mailto:nathan.stohlm...@gmail.com] Sent: Thursday, February 04, 2010 11:00 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] How to rename an exis

Re: [WiX-users] Using to resolve ICE03 error results in LGHT0094 error

2010-02-04 Thread Blair
EnsureTable resolves that issue with all tables that the linker can find the definition for (such as LockPermissions, which is a Windows Installer defined table). Since merge modules are added by the binder after the linker has run you would need a definition for the CrystalRedirection table in you

[WiX-users] how to create a wixproj for building WIXMSP file

2010-02-04 Thread Lian Jiang
Hi, I want to create a project in Visual Studio to build a WIXMSP used by Wix's Pyro.exe. However, WIX's wix.targets file only support project type PatchCreation which builds a PCP used by MSIMSP. Does anybody have the experience to create a wix project for WIXMSP? Otherwise, I have to use th

[WiX-users] Is there a copyright issue?

2010-02-04 Thread Wheeler, Blaine (DSHS/DCS)
I just ran across this http://www.wix.com/ Blaine Wheeler SEMS Operations 360.664.5416 "The 'silly' question is the first intimation of some totally new development." Alfred North Whitehead -

Re: [WiX-users] Is there a copyright issue?

2010-02-04 Thread Blair
There are also oil filters known by the brand name WIX: http://www.wixfilters.com/. They started in 1939 and have kept the same name in continuous use ever since. Microsoft first open sourced the WiX toolset somewhere around 2002-2003 (I don't remember the year and I'm not bothering to look it up)

Re: [WiX-users] how to create a wixproj for building WIXMSP file

2010-02-04 Thread Shahab Khan
Found this information> http://wix.sourceforge.net/manual-wix2/patch_building.htm Please check this out. Thanks Shahab -Original Message- From: Lian Jiang [mailto:lji...@microsoft.com] Sent: Thursday, February 04, 2010 4:59 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] how

Re: [WiX-users] Fwd: Get property for Repair mode !

2010-02-04 Thread bibhash phukon
Hi, By using "Installed" property I am able to launch the dialog box when "Change" button is clicked but not on "Repair" Thanks Bibhash Phukon. On Thu, Feb 4, 2010 at 8:38 PM, Rob Mensching wrote: > "Installed" sounds like what you want. > > On Thu, Feb 4, 2010 at 5:28 AM, bibhash phukon wro

[WiX-users] Upgrade installer

2010-02-04 Thread Nick Number
Hello all. I've just joined the list in hopes of solving a specific problem. A few months ago I used WiX to create a fairly simple .msi. Here is the relevant portion of the .wxs file, with identifying information redacted (GUID1 and GUID2 represent real uppercase GUIDs): ---START OF CODE---

Re: [WiX-users] How to rename an existing file after installation(major upgrade)?

2010-02-04 Thread Nicole Zheng
All, Thanks for your detailed explanation and suggestion. I may consider to modify the app. However, your words enrich my knowledge base. Thanks again.=) -- View this message in context: http://n2.nabble.com/How-to-rename-an-existing-file-after-installation-major-upgrade-tp4506348p4518368.html

Re: [WiX-users] adding a folder in the start menu

2010-02-04 Thread ricky sundrani
I also had a somewhat similar task at hand and i had realized the following - Chnage id from StartMenuFolder to MyMenuFolder or . any other id Directory String Identifier reference to Directory element where shortcut is to be created. When nested under a Component element, this attribute's value

Re: [WiX-users] adding a folder in the start menu

2010-02-04 Thread ricky sundrani
> I also had a somewhat similar task at hand and i had realized the following > - > Chnage id from StartMenuFolder to MyMenuFolder or . any other id > > > > > > Accordingly update other references. > > http://msdn.microsoft.com/en-us/library/aa372025(VS.85).aspx > > >

Re: [WiX-users] Is dark broken?

2010-02-04 Thread Rob Mensching
Thanks very much for going through all the trouble. We'll dig into it. On Thu, Feb 4, 2010 at 11:14 AM, Houston,Jerry wrote: > I finally found the right link, and submitted an "artifact" describing > the problem. I tried to attach the little MSI that I created, but was > told that 256K was the l