Yes.
Check out http://www.tramontana.co.hu/wix/lesson3.php and
then start experimenting. You must schedule (if You do the
installations as CustomActions) the installations into the
. You can include several msi-files into one huge
msi-file, and then run them, one by one via standard CustomA
For this you'll need a bootstrapper.
A bootstrapper is an application (SETUP.EXE most likely)
which tests your prerequisites and performs action on that (install them or just
give a message) and then starts the actual MSI installation.
Several bootstrappers can be found on the internet,
Hi All,
I have a file that is embedded in the msi.
I want to copy the file in my install location. What
should be the syntax in the File element to specify that it is a embedded
binary. E.g. I have a file sbc.dll embedded in the msi.
Hi, I have multiple msi packages created using WiX, a bootstrapper setup.exe and settings.ini (settings.ini contains some configuration information used by setup.exe) . How can I package these files (msi packages + setup.exe + settings.ini + some other resources) as a single installable execu
Embedded binaries are only for items that you
aren't installing, such as custom action DLLs and graphics used in the
UI. Everything else should go in the (possibly embedded) CAB or as a loose
file.
If trying to invoke a custom action from a DLL you're
installing, you should use the FileKey
You might want to use a self extracting zip and a
modified SFX (use SFXMake for instance) so the setup.exe is started
automatically after extracting the selfextracting zip :)
Regards,
Albert van Peppen
Van: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Namens
vijVerzonden: woensdag 20 se
Any one see any issues with my syntax
here?
I have the ID set to the upgrade ID of the
previous MSI pack… again this is working in English but not in any other
lang.
From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Jeff MacDuff
Sent: Tuesday, September 19, 2006
Alexander Gnauck wrote:
> When i try to update my application then the update copies all new
> files, but it doesn't replace all exe or dll files which changed.
Did you change the version number of these files?
Rob
-
Take S
Hi,
After reading the MSDN and Wix help (at the end of my email) I think
that you can ommit the ExcludeLanguages attribute since you do not
use the Language attribute. Anyway I think it should work as you want.
Try to check the resulting MSI file with ORCA (or any other viewer)
and look at the Upg
You can create a self-extracting executable with something
like WinZipSE. I have been using a free self-extacting executable creator called
Zip2SecureExe [1].
You can also use IExpress which ships with Windows
XP. Just type IExpress in the Start->Run... box and follow the
wizard.
[1] ht
Thanks Mike. I’m still struggling. I
am installing a Win Service (no UI) so I was thinking that I need to offer the
user the opportunity to specify the data directory during installation. The
nature of the application is that the data path cannot easily be changed once
installed.
I l
Were all of your previous MSIs issued with the same
UpgradeCode?
If not, I think you need one element per
UpgradeCode.
--
Mike Dimmick
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Jeff
MacDuffSent: 20 September 2006 14:11To:
wix-users@lists.sourceforge.netSubject:
[EMAIL PROTECTED] schrieb:
> Send WiX-users mailing list submissions to
> wix-users@lists.sourceforge.net
>
> To subscribe or unsubscribe via the World Wide Web, visit
> https://lists.sourceforge.net/lists/listinfo/wix-users
> or, via email, send a message with subject or body 'help' to
Salut,
I'm trying to install a self-written plugin for firefox using wix. What I
have to do is basically read out the folder, firefox is installed to from
the registry:
HKEY_LOCAL_MACHINE\SOFTWARE\Mozilla\Mozilla Firefox\2.0b2 (en-US)\Main
field: Install Directory
and then copy the extension to
Title: [EMAIL PROTECTED] and Online Bill Payer Deactivation
...
Dear
Member,
This is your official notification
from America's First Federal Credit Union that the service(s) listed below
will be deactivated and deleted if not renewed immediately. Previous
not
You should be able to write the value obtained to a directory ID like you would
for a property. All
sub-directories will get updated as well. You might need the ID name to be in
uppercase.
Rob
vbtricks wrote:
> Salut,
>
> I'm trying to install a self-written plugin for firefox using wix. Wh
Something like this should do the trick:
Property>
and then have the following as a child of the Progra
Sorry for the mangled message..
On 9/20/06, John Ludlow <[EMAIL PROTECTED]> wrote:
>
>
> Something like this should do the trick:
>
>
>
>
>'FirefoxInstallPath' Type='raw' Key='SOFTWARE\Mozilla\Mozilla Firefox\2.0b2
> (en-US)\Main '/>
>
> and then have the following as a child of the Progr
Hi All,
Is there any way to control the display order of shortcuts under
the programs folder?
Charlie
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to
I think you need something like this:
" />
Neil
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Frank
HsuehSent: 18 September 2006 21:58To:
wix-users@lists.sourceforge.netSubject: [WiX-users] Shortcut to a
URL target?
WIX-Users,
I
But if you do this do you find you have to supply an icon
or the shortcut does have one until you click it once? This is what I found I it
didn't make sense to supply an icon to me (it was a shortcut to an chm
file).
Neil
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Beha
I would second that.
Neil
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Paul
WelterSent: 19 September 2006 18:33To:
wix-users@lists.sourceforge.net; wix-devsSubject: [WiX-users]
Petition to upgrade source repository to subversion
Hi,I've been using WiX f
Visual Studio 2005 Released version 8.0.50727.42 creates output
DLLs with a manifest that says it depends upon
Thus, heat can never find the MSVCR80.DLL version on the
machine. Is there a way to make heat ignore the version dependency so as
to take the latest version which is
Steven Chin wrote:
> Visual Studio 2005 Released version 8.0.50727.42 creates output DLLs
> with a manifest that says it depends upon
>
>version="8.0.50608.0"
>
>
Does version="*" work? Even better would be version="8.0.*.*" but I
suspect that's unlikely.
Tony
---
WIX Version: 2.0.4415.0
Problem Summary: How to use properties with
Directory elements
Sorry for the newbie questions…but I’m
learning.
I use the BrowseDlg from the WiXUI library to get a data
directory from the user. I store the user’s selection in a
property. Now I need to cr
Douglas Watts wrote:
I use the BrowseDlg from
the WiXUI library to get a data
directory from the user. I store the user’s selection in a
property. Now I need to create the directory using this property. I
have tried the following WiX code but when I run the MSI I immediatel
Charlie Poole wrote:
> Is there any way to control the display order of shortcuts under
> the programs folder?
>
>
No. They're just .lnk files in a directory, so there's no way to sort
them on install. The shell doesn't expose an API for the UI re-ordering
it supports.
--
sig://boB
http://b
Douglas Watts wrote:
I looked at
the UI library source. I
noticed that the WixU InstallDirDlg and the CustomizeDlg both use the
PathEdit
control and a browse button to display the BrowseDlg. I figured I
could create
a DataDirDlg that did the same thing. Unfortunately, I just
I've been working to convert our current InstallShield installer to WiX 2.0
and everything's working fine. But the thing that's actually preventing me
from switching is that I need five languages for the GUI: English, French,
Spanish, Italian, and German. Currently French and Italian are not
availa
Hello,
Is there a list of the differences between 2.0 and 3.0 available
anywhere?
>From quickly comparing the .chm files and searching the list archive
I've come up with these new features in 3.0. Am I correct? What features
have I missed? :)
- Auto-generation of short file and directory names
-
Thanks Bob. However, we need to allow
the user to specify the directory, including the drive. I can’t use
the “CommonAppDataFolder”; at least, not beyond using it as a
default path. Usually, my users will store data on a different
drive. I need to create the data directory and set speci
> -Original Message-
> From: Bob Arnson [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, September 20, 2006 12:18 PM
> To: Charlie Poole
> Cc: wix-users@lists.sourceforge.net
> Subject: Re: [WiX-users] Order of Menu Items
>
> Charlie Poole wrote:
> > Is there any way to control the display
Charlie Poole wrote:
> For better testing, I'd like to know where that is and
> clear it out periodically. Any ideas?
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder
I don't believe it's documented what's in that key though so deleting it
might not be a good idea
Jim Hewes wrote:
> I realize that it's a volunteer effort. So I think that means that the
> translations may happen next week, or they may never happen at all, true?
Correct.
> I
> guess my question is: what hope do I have? Is there a definite expectation
> for more languages to be done?
>
Gabo
Hello vij,
You already have the tool if you have IE6 installed: iexpress.exe
It's part of IEAK (Internet Explorer Administration Kit).
Run it once, go through wizard, let it create *.sed file. Edit .sed
file to change file paths to relative if necessary. Now you can build
a self-extracting CAB
Hi Tony,
> > For better testing, I'd like to know where that is and clear it out
> > periodically. Any ideas?
>
> HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Ex
> plorer\MenuOrder
>
> I don't believe it's documented what's in that key though so
> deleting it might not be a goo
Hi,
I hope this is the right alias for my questions. If not,
please kindly forward of you know any place proper.
After moving to wix2.0. some of the custom actions we used
before began to fail. Manually running the action in command line works just
fine, but the msi fails with erro
Ok thanks for the tips.. I will review the
codes again and take a look.
From: Mike Dimmick
[mailto:[EMAIL PROTECTED]
Sent: Wednesday, September 20,
2006 7:03 AM
To: Jeff MacDuff;
wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] Quick
question on upgrade checking
W
It's still not working for me... here's what I did:
I looked at the new msi ( the one we are building now ) and in the
upgrade table it has a upgrade code.
I then looked at the old MSI in orca, and in it's property table it has
the exact same GUIDS for it's upgrade code.
Is there any execection
My application contains a "config" file that contains a set of database
connection strings. In my application, I loop through all of those
databases, connect using the connection strings stored in the "config" file
and perform certain actions.
I need a way to prompt the user to define an unlimit
I wrote a class library in C# (ClsLibTest.dll). And there
is a Windows Application (DLLWix.exe) that uses the
ClsLibTest.dll. Everything is installed perfectly if I use
Visual Studio 2005 Setup project to create the *.msi file.
The problem is I couldn't get the *.msi run by using WIX.
The followi
Thanks for the reply. I probably should have mentioned that I had seen the
localization project web page. I noticed that French has been finished for a
while. Anyway, I'll do what I can.
(Sorry, if this gets sent twice. I always get some sort of error the first
time I send...something about my do
I have a question, about changing versions and upgrading,
in previos versions, i have made a registry key
"HKEYLOCALMACHINE\...\version 2.0", but now in an update, i would like
to change this to 2.0.1 though it seems that it only creates a new one,
and changes the existing one. This also applys
Title: Message Queue Help Needed
Hi Everyone
I am using the following code to create a Message Queue. It works fine when installed to the local machine (i.e. when AUDITQUEUESERVER is set to local machine name or ‘.’) but when I try to install to another machine name it fails. Can anyone give
Hi David
Did you ever solve this problem? I am having the same issue and really
need some help...
Thanks
Emma.
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of david
adams
Sent: Friday, 1 September 2006 10:37 PM
To: wix-users@lists.sourceforge.net
Subject
45 matches
Mail list logo