Henning Eiben wrote:
> I didn't find an obvious way to include a file only once in the MSI and
> install it to serveral locations ...
>
Generally you don't. Instead, you can use WiX's support for "smart
cabbing" so that only a single copy of the file is included in your MSI
package regardless
Philip Lippard wrote:
What is the status of the above WIX install with VS.NET 2008 RTM ?
Is Votive still installed with this release ?
Yes. What features are shown if you click Advanced?
--
sig://boB
http://joyofsetup.com/
---
Frank Eden wrote:
> I run dark against my MSI, and I get an exception. Ive tracked it down a
> bit, and I find that if I delete particular ros in the AppSearch table, I
> can get dark to work. Please find an attached MSI that demonstrates the
> problem. Its 4Mg - Sorry its so big!!
>
Your at
Szentpali Janos wrote:
> "Merge modules are generally now considered bad practice..."
> If this is true than what is the point of the whole MSI system? I mean if I
> have a 3rd party component (x.dll) that 4th party and 5th party are using
> too, how does the system decide that the x.dll compone
Chris Weiss wrote:
> the installer as possible. I'd planned to use a Fragment, but
> discovered that Fragments are no longer supported (why?).
Fragments are still supported. What's no longer supported is
FragmentRef. Take a look at using ComponentGroup/ComponentGroupRef instead.
--
sig://boB
h
csellers wrote:
> We are using Wix build 3.0.2925.0
>
Please try the latest weekly release. The version you're using is over
six months old. And please include the exact error message from a
verbose log, to get the details the CA logs.
> Looking at this, you would think SchedXmlFile would oc
Henning Eiben wrote:
> Hmm, but as far as I can see only the source-version contains the
> msmq-extension, the binary version does not contain those binaries.
>
It was probably a casualty of the conversion to MSBuild. Please enter a bug.
--
sig://boB
http://joyofsetup.com/
Alexander Biryukov wrote:
> Bob, while it feature is NEW, you can improve it without damage of
> bracking changes.
>
The breaking change would be that Name currently defaults to Id.
> If you cannot improve this feature withot "Feature request", i will create
> it.
>
Please do. Otherwis
Did you add the references to your extensions in your WiX project?
...and, did you add the schemas to the wxs file?
i.e.
http://schemas.microsoft.com/wix/2006/wi";
xmlns:util="http://schemas.microsoft.com/wix/UtilExtension";
xmlns:sql="http://schemas.microsoft.com/wix/SqlExtensio
I can't do better than refer to the documentation for ICE60 at
http://msdn2.microsoft.com/en-us/library/aa369003.aspx.
"Failure to fix a warning reported by ICE60 generally leads to a file being
needlessly reinstalled when a product repair is done. This happens because
the file to be installed in
What you specify in the Icon elements gets incorporated in your .msi as a
binary at build time, so it should be something you have control over, not
attempting to use a system executable.
The warning message is described in the documentation for the Icon table,
where it states:
"Icon files that a
When we created help file shortcuts in the start menu using
InstallShield, we had to manually set the icon to
System32\WinHlp32.exe. If I try to do this with WiX, it complains that
the extension of icon 'xyz' for shortcut 'abc' does not match the
extension of the Key File for component 'foo.chm'.
I am packaging third party DLLs in my .msi file. These DLLs do not
contain a Language entry in their resource bundle. When I validate the
MSI I get an ICE60 warning for each of these DLLs: "The file is not a Font, and its version is not a companion file reference.
It should have a language
I Installed Votive 3.0 and I started testing out a project in Visual Studio.
When I tried to build the project it did not recognize SQLDatabase and User
as valid tags. I checked the help file to make sure I had the proper
version and it shows the definition for both. Have I missed some
versions
Brad,
First question:
Set the attributes when you are defining your feature and components.
Example:
Second question:
There is no elegant solution unfortunately. You could use a custom dialog
that does not employ the SelectionTree control, such as checkboxes, or a
custom action that hooks y
I have two questions. I am using the SelectionTree control to allow
customization. When I click on the top level of the tree it has the following
entries:
Will be installed on local hard drive
Entire feature will be installed on local hard drive
-
Will be installed to run from the network
En
Make sure you are using the service name in the ServiceControl table
and not the display name. The two are not necessarily the same and
you must use the service name when controlling services in Windows
Installer.
--
"The Direct3D Graphics Pipeline" -- DirectX 9 draft available for download
I've also worked on projects where the developers used environment variables
across the system and in the service. This also can cause a race condition as
the SCM doesn't recognize environment changes.
The poster mentioned install/start manually. Certainly try install MSI start
manually.
If it can be started ok after the install then the issue could be dependencies.
If it's dependent on an assembly in the GAC or (on Vista) the C++ CRT support
being installed from a merge module these won't be available at StartServices
time.
Phil Wilson
-Original Message-
From: [EMAIL
Please see this site in Subject
-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/__
Set the ROOTDRIVE property to "C:\" and Move your component under the
TARGETDIR DirectoryId tag. I am not sure why you would want your setup
package to share the root. That seems a little dangerous and
counterintuitive.
//aj
On Jan 2, 2008 8:14 AM, Chris <[EMAIL PROTECTED]> wrote:
> Hi there,
I'm trying to create a merge module with the file list as a separate
file so that programmers can edit it while still exposing as little of
the installer as possible. I'd planned to use a Fragment, but
discovered that Fragments are no longer supported (why?). If this were
not a merge module, I coul
The error message you receive implies that the service was installed but
failed to start.
Once getting this error (before canceling the installation or anything
else), if you go to Windows Service Manager, can you start the service
manually, right there in that minute?
I use Wix to install and sta
I am trying to install and start a service but its coming back with.
Error msg: Verify that you have sufficient priveleges to start system
services. I am running the msi file as an administrator.
I can install / start the service manually but not via wix, has anyone
seen this before and do they
What is the status of the above WIX install with VS.NET 2008 RTM ?
Is Votive still installed with this release ?
Votive does not show up as a VS.NET 2008 RTM add-in.
Philip
-
This SF.net email is sponsored by: Micr
Here's a sample that demonstrates the problem:
http://schemas.microsoft.com/wix/2006/wi";
xmlns:sql="http://schemas.microsoft.com/wix/SqlExtension";
xmlns:iis="http://schemas.microsoft.com/wix/IIsExtension";
xmlns:util="http://schemas.microsoft.com/wix/UtilExtension";>
Dominik Guder wrote:
>
> this looks suitable for me. I'll give it a try.
>
After a bunch of more important tasks I was able to come back to this task.
I first tried the diff solution which worked as expected and I ended with a
nant solution which removes the diff dependency. I would like to sh
Hi there,
I probably have a quite simple question:
How can I set the sharing of my C-drive and name it as "Root"?
I tried something like this but it creates the Root-folder:
Hi,
I'm fairly new to wix, and I want to create a msi-file to distribute my
.net application. My app consists of several components, which require
certain assemblies. These assemblies are required in the same folder as
the application (I don't want to place them in the GAC right now).
So I have a
In my installation, I give the user the ability to create a virtual
directory (under an existing website) or to create a new website, giving
the name, port number, IP and header value.
All works just fine, but when I'm uninstalling, the virtual dir or the
website, if created, are not removed and ar
The only possibility to create a shortcut for a file, as far as I know, is to
use the http://www.nabble.com/Automatically-creating-a-shortcut-after-the-FileSet-has-been-written-tp14576701p14576701.html
Sent from the wix-users mailing list archive at Nabble.com.
--
Is there a way to create a component group using mallow?
--
View this message in context:
http://www.nabble.com/Creating-a-component-group-using-mallow-tp14575919p14575919.html
Sent from the wix-users mailing list archive at Nabble.com.
32 matches
Mail list logo