I'm using the following code to write an integer value to windows registry.
It gives me a permission denied to access the specified registry key message
while running the msi.
any help?
--
View this message in context:
http://www.nabble.com/Problem-writing-registry-values-tf4149618.html#a11
You need to include the UI library file i.e. wixui.wixlib while linking your
object file
chandan Koushik wrote:
>
> Hi All,
>
> I am trying to use wix for installation of my product .When i try to use
> the UI wizard in my wxs file by using the following lines:
>
>
>
>
>
> I get the fil
Hi All,
I am trying to use wix for installation of my product .When i try to use
the UI wizard in my wxs file by using the following lines:
I get the fillowing error while linking :
unresolved reference to the symbol 'WixUI: WixUI_Mondo' in the section
Product={35D229AD-6CBC-4815-908D
Hi John,
I have a similar approach of automating the install of a our development
builds into the test environment.
To do this I rely on the msi minor upgrade process. This requires the
following Properties change / stay the same between two revisions of the
MSI.
UpgradeCode stays the
I'm wondering if anyone's run into this before and has a "best practice"
solution.
The scenario is an automated deployment environment that attempts to run
a scheduled upgrade of minor revisions of a product.
Therefore the numbers of the currently installed and to be installed
versions only diffe
-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http:
Hello
I'm using WiX v3 for an Outlook 2007 addin, but I've got to a point
where I'm completely stuck.
My installer works ok, but I now need to ensure our it doesn't proceed
while Office 2007 apps (particularly Outlook.exe) are running. I'm yet
to find a complete explanation or example of h
Is there any way to convert Unicode to said code page via code? I am lucky
enough to be using an external UI. There is only 1 dialog (Disk Cost) that
is displays internally. Is there a way to get the information that a Disk
Cost dialog would display from the MSI?
Bob Arnson-6 wrote:
>
> Magus
I downloaded the latest 3.0 "release" and when I attempt to install the
project aggregator MSI windows gives me an error message " A network error
occurred while attempting to read from the file C:\ProjectAggregator2.msi"
(resending, since list acknowledged receipt but failed to follow through
wi
Hello, can anyone point me to a way to get a shortcut installed under the
windows volume folder without getting the following warning?
Here is my directory structure:
Here is the warning (note it still compiles and creates my shortcut in the
appropriate place):
Warning 1 ICE46: Pro
Thanks mike,
Yes I would agree fragments offer much more and I will keep that
in mind moving forward. For me however I need a migration path from Wise
to WIX and that's going to be merge modules for now. Once I have
convinced my team WIX is the way to go (and believe me I'm trying very
har
WiX was designed to support very large installer projects, with a design
goal of distributed setup authoring. To support this idea, WiX supports
Fragments.
A Fragment is just a section of setup authoring. Loosely, candle compiles
source files containing one or more Fragments into .wixobj files, an
Hey Jeroen,
I'm also not sure what your trying to achieve however for me I
have very large installers including well over 16k files. For me I need
to split that up to reduce build time as well as keeping things modular.
The way I do that is with Merge Modules (MSM) which is basically an
in
We do this using public properties and the SqlString element instead. You
end up embedding the actual sql directly in the MSI, but you can reference
the properties directly. An example follows:
Dana
On 7/25/07, Arnold Layne <[EMAIL PROTECTED]> wrote:
Hi all,
How do I pass paramteres to my
If I'm moving to WiX, which version should I use. How far off is stable
v3 likely to be?
A colleague said "I would wait
for a stable 3.0 before considering switching. It’s vastly
improved over version 2, and is not backwards
compatible."
Thanks
Sorry,
If user selects "Service N°2" during installation, "Service N°1" feature
will be unselected.
If user selects "Service N°1" during installation, "Service N°2" feature
Jeroen Davelaar wrote:
> How is it possible to nest a msi file with Orca while it is nog possible to
> do the same thing with WiX?
>
WiX deprecated the functionality when the MSI team deprecated it.
--
sig://boB
http://joyofsetup.com/
--
John Hall wrote:
Should the WiX preprocessor give an error if there is a statement that
it does not recognise?
I just spent some time tracking down a problem, which eventually came
down to me using rather than . An error message
saying
I would have assumed so but there's a comment in the c
Crusty Applesniffer wrote:
> I'm using Wix3.0 and I wonder if there is a way to declare two
> components that can not be installed for the same feature.
> I mean how can I have:
> (x) Feature 1
> (x) Component A
> ( ) Component B
>
> that automatically changes to :
> (x) Feature 1
Emilien Bertin wrote:
> Do you have an other idea ? At least I would like the big part to be an
> msi, and the small one could be a zip or something.
>
I'm not sure I understand the scope of the problem. WiX works just like
every other compiler/linker in that it's scriptable so rebuilding an
bryan rasmussen wrote:
> but not in the binaries? Should I need it if I am running the
> binaries?
If you want to build something from the WiX source, yes. WiX v3 improved
how custom objects and libraries can reuse existing ones.
--
sig://boB
http://joyofsetup.com/
-
Hello,
I'm using Wix3.0 and I wonder if there is a way to declare two
components that can not be installed for the same feature.
I mean how can I have:
(x) Feature 1
(x) Component A
( ) Component B
that automatically changes to :
(x) Feature 1
( ) Component A
(x)
Hi all,
How do I pass paramteres to my sql script? I would like to do something
similar to what is done by sqlcmd:
SQLCMD MyScript.sql -v Param1=Value1 -v Param2=Value2 ...
Can I do it in WIX ver 2 with the SqlScript tag?
Thanks
-al
--
Bernd,
While it is not documented in the article you reference (but probably should
be) custom action types 7, 23 and 39 are deprecated.
For more details, see the various blog entries by the windows installer team -
especially
http://blogs.msdn.com/windows_installer_team/archive/2006/11/06/q-a
I could be wrong, but I believe that if the website / vdir is recreated in
IIS, you could run the uninstall.
David Adams
MSN MessengerID: [EMAIL PROTECTED]
>
>Anyone have suggestions on how to handle the situation where setup fails on
>uninstall because the website associated with a virtua
I have tried to search registry using this:
And then tried to build to installers one with:
MYAPPPATH2
And another with:
NOT MYAPPPATH2
In both cases Error message box came up. How can it be?
in both cases i was using:
I want to install my program to directory set in re
How is it possible to nest a msi file with Orca while it is nog possible to do
the same thing with WiX?
Regards,
Jeroen Davelaar
-Oorspronkelijk bericht-
Van: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Namens Bernd
Verzonden: woensdag 25 juli 2007 13:47
Aan: Emilien Bertin; WiX-users
Should the WiX preprocessor give an error if there is a statement that
it does not recognise?
I just spent some time tracking down a problem, which eventually came
down to me using rather than . An error message
saying -
Thi
Ravit,
looks like you have a condition on your custom action; I think that
TARGETDIR="E:\"
means do the custom action only if TARGETDIR="E:\". Try changing this the
TARGETDIR="E:\" condition to 1, meaning it will always be executed.
Friedrich
Hi,
I'm trying to change TARGETDIR to e drive.
thats not correct!
you dont need the external exe.
with custom action type 7/23/39 you can nest a msi.
http://support.microsoft.com/default.aspx/kb/306439
Emilien Bertin wrote:
> Thanks for the confirmation Bob.
> So I have to drop this "msi in msi" solution because I want to deliver a
> msi
Thanks for the confirmation Bob.
So I have to drop this "msi in msi" solution because I want to deliver a
msi, not an external .exe
Do you have an other idea ? At least I would like the big part to be an
msi, and the small one could be a zip or something.
Bob Arnson a écrit :
> Emilien Bertin
but not in the binaries? Should I need it if I am running the
binaries? Well I guess I'll get the source anyway and see how it
works.
Cheers,
Bryan Rasmussen
On 7/25/07, Bob Arnson <[EMAIL PROTECTED]> wrote:
> bryan rasmussen wrote:
> > nant gives the following error: Build File c:\tools\wix.incl
Ok. Thanks.
I scheduled the action as deferred after InstallFiles (I needed the
custom action to be triggered after file installation and before service
start). I works fine.
Thanks again for your help.
Fred
Mike Dimmick a écrit :
Sorry, either mark as deferred and schedule between InstallIn
Hi,
you want to launch the custom action, that assigns "E:\" to TARGETDIR only if
TARGETDIR has the value "E:\". Your Condition is wrong.
In our setup we use a Property that determines if drive e is present and if so,
sets the default install path to e, maybe this is something for you either.
34 matches
Mail list logo