hi All,
Can any one please help me out from the following issue?
the issue is while launching my installer during licence dialog i could not
able to see my licence in the dialog. but i verified, icould able to see all
my licence.rtf files in the installer. when i digged into the logs i found
the
On 3/3/2010 10:50 AM, Pally Sandher wrote:
> Moral of the story, be absolutely certain when you're changing Product
> Codes (still can't believe I made such an error, hoist by ones own
> petard).
>
A higher-level moral: Test serviceability before shipping; afterward is
too late to fix whole c
On 3/3/2010 4:14 PM, admiristra...@cox.net wrote:
> Can someone please detail how Merge Module versioning is supposed to work?
>
There's no such thing. Merge modules are a collection of tables and rows
that are merged into your .msi package, losing their identities in the
process. All versio
On 3/2/2010 10:21 AM, Tabmow wrote:
> I know the PrepareDlg pops up (modeless dialog) briefly at very
> beginning, but is there a way to 'pause' it there or slow it down from
> disappearing so fast? I want to check one thing out on the layout and it
> disappears too fast for me to tell.
>
On 3/3/2010 5:02 AM, Jacek Pospychała wrote:
> anyway, I'm still interested to learn, how the DLL is processed that it can
> throw a popup..
>
Self-reg runs code in the DLL; it can do anything, which is one of the
reasons it's evil in an installer.
--
sig://boB
http://joyofsetup.com/
On 3/1/2010 10:14 AM, Tim St. Clair wrote:
> Custom config file, but it resembles an ini file without any tags/keys.
>
MSI supports .ini files and WiX additionally supports XML. No arbitrary
text support, however.
--
sig://boB
http://joyofsetup.com/
---
Costing operations haven't occurred at the time the CA is being scheduled so
the feature state items are not set, yet.
--
View this message in context:
http://n2.nabble.com/Pass-selected-Features-as-parameters-to-custom-action-tp4657879p4671925.html
Sent from the wix-users mailing list archive
Can someone please detail how Merge Module versioning is supposed to work?
I cannot find guidance anywhere for Merge Module versioning (especially in
WiX). I've seen WiXLibraries, so if that would work better, please tell me
how.
The scenario, which I believe is common: Certain shared files and
Mike, thank you very much!
-Rajendra
-Original Message-
From: MikeR [mailto:michael.ru...@gmail.com]
Sent: Wednesday, March 03, 2010 3:54 PM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Auto-generated vs statically assigned GUIDs
We use auto-generated Product GUIDs alm
We use auto-generated Product GUIDs almost exclusively where I work. I
really haven't found a downside to it, at least for our uses. As for
detecting old products, it is still easy to detect them. Instead of looking
them up using explicit ProductCodes you use the Upgrade table with the
UpgradeC
My advice would be to use the 32 bit install location, but if you really want
to put it in the 64 bit location, you can author two components, one for the
server and one for the class associated with the server. The server can be
marked as 64 bit. The class component marked as x86. Mark the ele
Adding a hash is also recommended.
Phil Wilson
-Original Message-
From: Sascha Beaumont [mailto:sascha.beaum...@gmail.com]
Sent: Tuesday, March 02, 2010 8:00 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] File from local location
If you do use a
The registration data is different between 32-bit and 64-bit? If it's the same
can you build a 32-bit version to extract the registration?
Phil Wilson
-Original Message-
From: Dan Hoeger [mailto:dan.hoe...@microsoft.com]
Sent: Wednesday, March 03, 2010 8:41 AM
To: 'General discussion
Hi,
What are the pros/cons to using Id=* vs Id="someGUID" in the Product element?
The only thing I can think of is that auto-generated GUIDs are a convenience.
Are there any downsides to using them? For example, after a product is
installed, would identifying it using a GUID be hard because the
I believe you want to list these properties as the value of the built-in
"SecureCustomProperties" property, so they will be set in the server context as
well.
Try adding something like this to your authoring:
Thanks,
Mike Carlson
-Original Message-
From: 万 毅 [mailto:overwhelmi
I was trying to use Heat.exe to generate the registry entries but this fails
because heat is 32 bit and the assembly I'm trying to get the registry
information for is 64 bit.
What are we supposed to use to get the right registration entries for this?
Also, I see references to a Complus extensio
Take a look at the description for ICE30:
http://msdn.microsoft.com/en-us/library/aa368954(VS.85).aspx
What I gather from it (and a preliminary test confirms it) is that if you
have two files being installed to the same directory, then the only way to
avoid an error is to add elements to both c
Pally,
Yes, the file IDs are unique, reside in separate component groups, which
are included in separate features. I'm rethinking what I'm doing at this
point, as it's a similar problem to doing 32/64-bit installs. I'm
thinking that I ought to tackle that before this to get my arms around
the
Are File Id's unique?
I'm impressed you can even get as far as light running the ICE's if you
have the same file in 2 components although quite how you managed that
is beyond me. Code snippets would be a big help as would pasting the ICE
errors from the build log.
Your approach sounds fine from yo
Got 1 MSP which updates all 3 previous versions using 2 Patch Family
elements in my Patch Creation XML. It means having to create a hacked
version of the 1.3 installer which has it's Product Code set to the same
as v1.0 & v.1.1 (and a new Package Code generated) to use in the first
Patch Family Ele
The biggest problem with installing dependencies from your UI sequence
is that they do not get called if your MSI is run with silent or basic
UI. And then, since your MSI can't show any UI, it's harder for it to
explain the failure. One hopes that if a person runs the MSI silently,
they know how to
salever.lee wrote:
>
> Does some one have an idea about cd-key verify during product installation
> in UI?
>
The WiX tutorial has a section that details how to do this:
http://www.tramontana.co.hu/wix/lesson3.php#3.3
If you're not comfortable with C++ custom actions, keep following the
tutor
I had the same problem. Apparently, "Feature conditions that include
properties set during the UI sequence won’t work as expected." Instead, use
the AddLocal and Remove events.
This should shed some light on the issue:
http://www.joyofsetup.com/2007/05/30/feature-conditions-and-ui/
On Wed, Mar 3,
What's the parent node of your product and package elements?
On Wed, Mar 3, 2010 at 5:20 PM, Alec Taylor wrote:
> Top of the Morning to you,
>
> I'm trying to generate a complete Installer using the command-line
> tools. I have the directory structure. I want two choices, Custom &
> Complete. Co
The product out there (and it has had many releases) did not set
upgrade code but used a registry key in the past. So, do I not have a
situation where UpgradeVersion tags would fail if I suddenly introduce
them, and where I need to keep the old scheme
in parallel?
Specific about this product is th
Hi,
I have a problem with a condition that checks a property's value in
order to set the LEVEL for a FEATURE
Here is my code
PROPERTY that is used by the RADIOBUTTONGROUP :
I have tried leaving the value out, changing to different etc etc but
compiler errors occur then...
FE
What was weird was the inconsistency - sometimes it opened in the foreground
and sometimes it didn't. I switched over from a type 50 custom action to a
type 34 and used write (wordpad) instead of notepad. Seems to work
now. Thanks for the help.
Here's the code in case it helps anyone.
WIXUI_EXI
Top of the Morning to you,
I'm trying to generate a complete Installer using the command-line
tools. I have the directory structure. I want two choices, Custom &
Complete. Complete I want to contain the 'Java' subdirectory, whilst
Custom I'd like the user to be able to choose whether or not to
inc
Hi,
I've unfortunately made a bad decision a few months ago which is the
cause of this query.
We have an installer which we've released 3 versions of in the past. All
cosmetic changes to UI etc, components were unchanged between all 3
versions.
V1.0 & v1.1 have product code A.
I (stupidly) released
Thanks, had a feeling it was something simple like that :)
--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel pe
Top of the Morning to you,
I've noticed in some Installers, eg; NSIS, it is possible to do what
the subject is requesting.
Is this possible with WiX?
If so, what's the method?
Please alleviate my confusion.
Thank you so much,
Alec Taylor
--
Use the Wix tool 'heat'.
On Wed, Mar 3, 2010 at 4:25 PM, Alec Taylor wrote:
> Top of the Morning to you,
>
> I've been using MakeMSI for almost half-a-year now, wrote a neat
> little script to generate the file list for it.
>
> Is there a tool/script/program/command I can use to generate the
> fi
Or you could simply run on finish?
On Wed, Mar 3, 2010 at 5:05 AM, Wilson, Phil wrote:
> This is usually a losing game.
>
> http://blogs.msdn.com/oldnewthing/archive/2009/02/20/9435239.aspx plus
> discussion
>
> Can you arrange to have the install complete while Notepad continues to run?
> If y
Top of the Morning to you,
I've been using MakeMSI for almost half-a-year now, wrote a neat
little script to generate the file list for it.
Is there a tool/script/program/command I can use to generate the
file-list from my directory structure in WiX's XML format?
Please inform me if you know of
ok, I figured out adding "-sreg" to heat command line does the trick.
anyway, I'm still interested to learn, how the DLL is processed that it can
throw a popup..
Jacek
2010/3/3 Jacek Pospychała
> hi,
>
> I'm generating wxs file for Sun Java Runtime using heat and unfortunately
> during this p
We're currently building an MSI targeting the x64 platform. Most of
our binaries are 64-bit, so we have placed each one into a 64-bit
component under the ProgramFiles64Folder directory. However, we also
need to install a 32-bit COM in-process server DLL. We're having
issues because we'd ideally lik
Hi,
· I am making an installer and I want to
register and Install Com+ application and set the Identity to the Local
System. I wrote the following code in my custom action for setting the
identity. but It didn't work(It puts "nt authority\system" in the user field
hi,
I'm generating wxs file for Sun Java Runtime using heat and unfortunately
during this process, heat/jre popups an error dialog saying "Java Plug-in
1.6.0_18 is not installed properly".
This happens for two DLL files inside JRE and turns our sleek fully
automated process into manual nightmare :
38 matches
Mail list logo