Re: [WiX-users] dot Net Custom actions

2007-04-05 Thread Nitin Chaudhari

You can run dot net code during installation, although there are some reason
why you should not. I have been executing .net code in my installation for
quite a while now

Anyways here how to do it :

Include the following







In a class library project, add a installer class. Check out
http://go.microsoft.com/fwlink/?linkid=83721 for example the msi contains
SetSecurity project, this is used to added custom code.

Now add the following in installexecutesequence


$HelperLibrary>2

$HelperLibrary>2
So, once installation starts, it the first CA sets up parameters required
for the .net function we want to call
and the 2nd CA calls the .net function

The CA will be written as follows - change the InstallSetProperty's Value as
required.





I hope this helps.
- Nitin

On 4/6/07, Igor Lemsky <[EMAIL PROTECTED]> wrote:


I need to launch some .net code during installation. Which possibilities
do I have? As I hear there are problems with .net custom actions in Windows
Installer.
So I cant add my .net assembly exe into the product as file or binary
stream and use one of the custom actions types to launch it?
Only way to launch from other custom action script like VBS or native dll
(c++)?

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share
your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] こんにちは(^^ ♪

2007-04-05 Thread 美樹
はじめまして美樹です。
掲示板で見て趣味合うかなって思ってメールしちゃいました。
 
イキナリでゴメンなさいm(__)m
こういう感じで知り合えるのに憧れてて初挑戦しちゃいました。
お返事もらえたら簡単な自己紹介しますネ(^_-)-☆
もしそんな気なかったらそう言ってもらえれば諦めますので。
もちろん仲良くなれた方が嬉しいけど。
お返事気長に待ってま〜す(^_^)/~
http://www.star-lightz.com/m-box



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] dot Net Custom actions

2007-04-05 Thread Igor Lemsky

I need to launch some .net code during installation. Which possibilities do
I have? As I hear there are problems with .net custom actions in Windows
Installer.
So I cant add my .net assembly exe into the product as file or binary stream
and use one of the custom actions types to launch it?
Only way to launch from other custom action script like VBS or native dll
(c++)?
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Error in German?

2007-04-05 Thread Kevin Burton
I have a Wix generated .msi file and it has been working fine for sometime
now (in English). Recently when I tried to deply on a machine that was low
on disk space I received an error dialog indicating that the machine had
insufficient space to proceed but this error message was in German. The
buttons were in German also. I generate the .msi using:

 

  





  

  



$(ToolPath)WixUI_en-us.wxl

  

  



  

 

So I am confused as to why the German is showing up.

 

Any help would be appreciated.

 

Thank you.

 

Kevin

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Per-Machine Installs that work on XP and Vista

2007-04-05 Thread Wilson, Phil
I don't believe there's been a change in ALLUSERS=2 behavior, only in
the documentation that Scott pointed at. MSADN from August 2006 doesn't
single out XP, for example. 
 
I've never been a fan of ALLUSERS=2 because of its unpredictability.
Sometimes you'll get per-user, sometimes per-machine. How can that be
relied on for something like a major upgrade when a user may be promoted
or demoted by the time you do an upgrade? It just seems to me that if
you know you want per-machine then just force it and avoid the hassle. 

Phil Wilson 

 



From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Ricardo
Lopes
Sent: Thursday, April 05, 2007 10:06 AM
To: Scott Palmer
Cc: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Per-Machine Installs that work on XP and Vista


Hi,

I sucessfully did a per-machine installer that works on XP and on Vista
(at least on the tests in the virtual machines worked fine).

I use the ALLUSERS=2 option to make vista put the shortcuts on all the
users desktop and start menu, but the secret is to include a
bootstrapper. I use the GenerateBootStrapper task of msbuild. 

When the user install the application he has to call the setup.exe
instead of the msi and if he is using a limited account it ask for the
password and everything works.

Hope it helps,
Ricardo Lopes.


On 04/04/07, Scott Palmer <[EMAIL PROTECTED]> wrote: 

I read this:

http://msdn2.microsoft.com/en-us/library/aa371865.aspx

(It took a while to get over the urge to slaughter those
responsible... but I'm feeling much better now.) 

That article indicates that Windows Installer is broken for
per-machine installs as there is no way to specify that you must have a
per-machine install that works on both XP and Vista.

If ALLUSERS=2, Vista will try a per -machine install and fail if
the user's credentials do not allow it. 
But XP will perform a per-user install if ALLUSERS=2

If ALLUSERS=1 it appears that XP will do a per- machine install,
though it is not documented as doing so on the page referenced above.

My ultimate goal is to install the application to a single
common location that is user-independent.  My current installer which
only sets ALLUSERS=1 tends to scatter files all over the place on Vista
as Vista has buggered the folder structure so some of my files appear to
be in a "common" place that is only common for that one user (which
appears to break component rules if another user installs the same
stuff), and some files go elsewhere. 

I'm hoping there is some conditional stuff I can add to the WiX
source that will cause ALLUSERS to get set to the appropriate value (1
or 2) based on the OS and that this will happen in time for Windows
Installer to recognize the value I want. 

I also noticed that the documentation for the Directory Id
"ProgramFiles" here
http://msdn2.microsoft.com/en-us/library/aa370810.aspx indicates that it
is always a per-user location.  That's obviously not true on XP, but
sadly it seems to be true on Vista.


What's the trick?

Scott




-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance
to share your 
opinions on IT & business topics through brief surveys-and earn
cash

http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDE
V
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
 
https://lists.sourceforge.net/lists/listinfo/ wix-users
 






-- 

Ricardo Lopes 
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] WiX create a MSMQ

2007-04-05 Thread DEVAL SHAH
Hello Fredrik,
Thanks for the help. I was able to create a queue using pca:MessageQueue 
element.
There is one weird thing:
If I already have a queue created and i try to run the install it says 
failed prematurely because queue exist so it rolls back and deletes the 
queue. Now I run the install again and it installs everything properly.
Is that the right thing or is there way to tell - not to create a queue if 
it exists.

Thanks
Deval


>From: Fredrik Grohn <[EMAIL PROTECTED]>
>To: DEVAL SHAH <[EMAIL PROTECTED]>, 
>"wix-users@lists.sourceforge.net"
>Subject: RE: [WiX-users] WiX create a MSMQ
>Date: Wed, 4 Apr 2007 22:29:41 +0100
>
>In WiX 2.0 it is possible using the MessageQueue element of PubCA:
>
>http://wix.sourceforge.net/manual-wix2/pubca_xsd_messagequeue.htm
>
>In WiX 3.0 these bits are still pending inclusion however.
>
>-Original Message-
>From: [EMAIL PROTECTED] 
>[mailto:[EMAIL PROTECTED] On Behalf Of DEVAL SHAH
>Sent: Wednesday, April 04, 2007 11:08 PM
>To: wix-users@lists.sourceforge.net
>Subject: [WiX-users] WiX create a MSMQ
>
>Hello,
>I wanted to create a MSMQ queue using Wix in my installation. Is there a 
>way
>to do that ?
>
>Thank you in advance
>Deval
>
>
>
>-
>Take Surveys. Earn Cash. Influence the Future of IT
>Join SourceForge.net's Techsay panel and you'll get the chance to share 
>your
>opinions on IT & business topics through brief surveys-and earn cash
>http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>___
>WiX-users mailing list
>WiX-users@lists.sourceforge.net
>https://lists.sourceforge.net/lists/listinfo/wix-users



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] wixlib and extensions and msm's

2007-04-05 Thread koawmfot

In a previous message this was posted:

Re: [WiX-users] Question about upgrading to Wix3 (beta)

Bob Arnson
Sun, 25 Feb 2007 11:57:39 -0800

James Hill wrote:

So, my question is why are there no .wixlib and .wxl files in the Wix
3.0 beta distribution.


They're included in the WiX extensions. So the WixUI .wixlib is now in
WixUIExtension. WiX.chm describes the change.

--
sig://boBhttp://bobs.org

this did not seem to be the case with difxapp. to get difxapp to work, i
needed to include the extension (WixDifxAppExtension.dll) when compiling
with candle, and then when linking with light, include the extension AND the
difxapp.wixlib.

i had to modify the v2 difxapp.wixlib also to update the xml elements to
match v3. (this took some playing around with lit...)

so my question is, is the difxapp extension just not ready yet or am i doing
something wrong?  the final msi worked as it should.

thanks
doug
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Per-Machine Installs that work on XP and Vista

2007-04-05 Thread Ricardo Lopes

Hi,

I sucessfully did a per-machine installer that works on XP and on Vista (at
least on the tests in the virtual machines worked fine).

I use the ALLUSERS=2 option to make vista put the shortcuts on all the users
desktop and start menu, but the secret is to include a bootstrapper. I use
the GenerateBootStrapper task of msbuild.

When the user install the application he has to call the setup.exe instead
of the msi and if he is using a limited account it ask for the password and
everything works.

Hope it helps,
Ricardo Lopes.

On 04/04/07, Scott Palmer <[EMAIL PROTECTED]> wrote:


I read this:

http://msdn2.microsoft.com/en-us/library/aa371865.aspx

(It took a while to get over the urge to slaughter those responsible...
but I'm feeling much better now.)

That article indicates that Windows Installer is broken for per-machineinstalls 
as there is no way to specify that you must have a
per-machine install that works on both XP and Vista.

If ALLUSERS=2, Vista will try a per-machine install and fail if the user's
credentials do not allow it.
But XP will perform a per-user install if ALLUSERS=2

If ALLUSERS=1 it appears that XP will do a per-machine install, though it
is not documented as doing so on the page referenced above.

My ultimate goal is to install the application to a single common location
that is user-independent.  My current installer which only sets ALLUSERS=1
tends to scatter files all over the place on Vista as Vista has buggered the
folder structure so some of my files appear to be in a "common" place that
is only common for that one user (which appears to break component rules if
another user installs the same stuff), and some files go elsewhere.

I'm hoping there is some conditional stuff I can add to the WiX source
that will cause ALLUSERS to get set to the appropriate value (1 or 2) based
on the OS and that this will happen in time for Windows Installer to
recognize the value I want.

I also noticed that the documentation for the Directory Id "ProgramFiles"
here http://msdn2.microsoft.com/en-us/library/aa370810.aspx indicates that
it is always a per-user location.  That's obviously not true on XP, but
sadly it seems to be true on Vista.


What's the trick?

Scott


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share
your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users





--

Ricardo Lopes
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Installing .NET Services

2007-04-05 Thread John Vottero
Correct.  Neither WiX's  nor SC CREATE need or use the
Installer class.  But, they can both install .NET based services whether
the service has an Installer based class or not.

 

From: Kevin Burton [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 05, 2007 12:54 PM
To: John Vottero; 'Don Tasanasanta'; 'Rob Mensching'; 'BULL, Dave, GBM';
wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] Installing .NET Services

 

The problem is that none if the "Installer" methods or events are
getting called. With InstallUtil the methods and events associated with
the Installer base class are call. With  they are not. I
would assume that SC_CREATE would also not call the Installer base class
methods.

 

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of John
Vottero
Sent: Thursday, April 05, 2007 11:41 AM
To: Don Tasanasanta; Rob Mensching; BULL, Dave, GBM;
wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Installing .NET Services

 

I don't think there's a difference between installing a .NET service vs
. a "regular" service so, ServiceInstall doesn't need to detect
anything.  Can you install your service with SC CREATE?

 

The InstallUtil.exe doesn't know a service from a hole in the ground.
All it does is look for classes that have the RunInstaller attribute and
it calls the right methods (depending on the command line switches). 

 

Was your service already installed the first time that you tried to
install it via WiX?  I'm not sure what Windows Installer does if a
service is already installed when it thinks it's installing for the
first time.

 

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Don
Tasanasanta
Sent: Thursday, April 05, 2007 12:28 PM
To: Rob Mensching; BULL, Dave, GBM; wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Installing .NET Services

 

How does ServiceInstall detect that you're installing a .net service as
opposed to a "regular" service?

 

I'm experiencing difficulties installing a .net service using
ServiceInstall. The service is there but doesn't seem to be registering
properly.

 

How does ServiceInstall work compared to the .net utility
InstallUtil.exe?

 



From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Rob
Mensching
Sent: Wednesday, October 25, 2006 8:12 AM
To: BULL, Dave, GBM; wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Installing .NET Services

 

ServiceInstall should just work.

 

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of BULL,
Dave, GBM
Sent: Wednesday, October 25, 2006 5:52 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Installing .NET Services

 

Hi Wix people

 

I am having problems installing a windows service written in .NET. I am
using wix 3.0.2128.0.

 

I have successfully managed to install services written in unmanaged C++
using the ServiceInstall tag, but this doesn't seem to work for my .NET
component.

 

Do I have to use the method which is mentioned here:

 

http://installneo.blogspot.com/2004/09/installing-windows-services-creat
ed.html

 

? ... or should the ServiceInstall tag work?

 

Dave

 
 

***
 
The Royal Bank of Scotland plc. Registered in Scotland No 90312.
Registered Office: 36 St Andrew Square, Edinburgh EH2 2YB. 
 
Authorised and regulated by the Financial Services Authority 
 
 
 
This e-mail message is confidential and for use by the 
 
addressee only. If the message is received by anyone other 
 
than the addressee, please return the message to the sender 
 
by replying to it and then delete the message from your 
 
computer. Internet e-mails are not necessarily secure. The 
 
Royal Bank of Scotland plc does not accept responsibility for 
 
changes made to this message after it was sent. 
 
 
 
Whilst all reasonable care has been taken to avoid the 
 
transmission of viruses, it is the responsibility of the recipient to 
 
ensure that the onward transmission, opening or use of this 
 
message and any attachments will not adversely affect its 
 
systems or data. No responsibility is accepted by The 
 
Royal Bank of Scotland plc in this regard and the recipient should carry

 
out such virus and other checks as it considers appropriate. 
 
Visit our websites at: 
 
http://www.rbos.com
 
http://www.rbsmarkets.com 
 

***
 
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Installing .NET Services

2007-04-05 Thread Kevin Burton
The problem is that none if the "Installer" methods or events are getting
called. With InstallUtil the methods and events associated with the
Installer base class are call. With  they are not. I would
assume that SC_CREATE would also not call the Installer base class methods.

 

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of John Vottero
Sent: Thursday, April 05, 2007 11:41 AM
To: Don Tasanasanta; Rob Mensching; BULL, Dave, GBM;
wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Installing .NET Services

 

I don't think there's a difference between installing a .NET service vs . a
"regular" service so, ServiceInstall doesn't need to detect anything.  Can
you install your service with SC CREATE?

 

The InstallUtil.exe doesn't know a service from a hole in the ground.  All
it does is look for classes that have the RunInstaller attribute and it
calls the right methods (depending on the command line switches). 

 

Was your service already installed the first time that you tried to install
it via WiX?  I'm not sure what Windows Installer does if a service is
already installed when it thinks it's installing for the first time.

 

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Don
Tasanasanta
Sent: Thursday, April 05, 2007 12:28 PM
To: Rob Mensching; BULL, Dave, GBM; wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Installing .NET Services

 

How does ServiceInstall detect that you're installing a .net service as
opposed to a "regular" service?

 

I'm experiencing difficulties installing a .net service using
ServiceInstall. The service is there but doesn't seem to be registering
properly.

 

How does ServiceInstall work compared to the .net utility InstallUtil.exe?

 

  _  

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Rob Mensching
Sent: Wednesday, October 25, 2006 8:12 AM
To: BULL, Dave, GBM; wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Installing .NET Services

 

ServiceInstall should just work.

 

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of BULL, Dave,
GBM
Sent: Wednesday, October 25, 2006 5:52 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Installing .NET Services

 

Hi Wix people

 

I am having problems installing a windows service written in .NET. I am
using wix 3.0.2128.0.

 

I have successfully managed to install services written in unmanaged C++
using the ServiceInstall tag, but this doesn't seem to work for my .NET
component.

 

Do I have to use the method which is mentioned here:

 

http://installneo.blogspot.com/2004/09/installing-windows-services-created.h
tml

 

? ... or should the ServiceInstall tag work?

 

Dave

 
 

***
 
The Royal Bank of Scotland plc. Registered in Scotland No 90312. Registered
Office: 36 St Andrew Square, Edinburgh EH2 2YB. 
 
Authorised and regulated by the Financial Services Authority 
 
 
 
This e-mail message is confidential and for use by the 
 
addressee only. If the message is received by anyone other 
 
than the addressee, please return the message to the sender 
 
by replying to it and then delete the message from your 
 
computer. Internet e-mails are not necessarily secure. The 
 
Royal Bank of Scotland plc does not accept responsibility for 
 
changes made to this message after it was sent. 
 
 
 
Whilst all reasonable care has been taken to avoid the 
 
transmission of viruses, it is the responsibility of the recipient to 
 
ensure that the onward transmission, opening or use of this 
 
message and any attachments will not adversely affect its 
 
systems or data. No responsibility is accepted by The 
 
Royal Bank of Scotland plc in this regard and the recipient should carry 
 
out such virus and other checks as it considers appropriate. 
 
Visit our websites at: 
 
http://www.rbos.com
 
http://www.rbsmarkets.com 
 

***
 
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Installing .NET Services

2007-04-05 Thread John Vottero
I don't think there's a difference between installing a .NET service vs
. a "regular" service so, ServiceInstall doesn't need to detect
anything.  Can you install your service with SC CREATE?

 

The InstallUtil.exe doesn't know a service from a hole in the ground.
All it does is look for classes that have the RunInstaller attribute and
it calls the right methods (depending on the command line switches). 

 

Was your service already installed the first time that you tried to
install it via WiX?  I'm not sure what Windows Installer does if a
service is already installed when it thinks it's installing for the
first time.

 

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Don
Tasanasanta
Sent: Thursday, April 05, 2007 12:28 PM
To: Rob Mensching; BULL, Dave, GBM; wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Installing .NET Services

 

How does ServiceInstall detect that you're installing a .net service as
opposed to a "regular" service?

 

I'm experiencing difficulties installing a .net service using
ServiceInstall. The service is there but doesn't seem to be registering
properly.

 

How does ServiceInstall work compared to the .net utility
InstallUtil.exe?

 



From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Rob
Mensching
Sent: Wednesday, October 25, 2006 8:12 AM
To: BULL, Dave, GBM; wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Installing .NET Services

 

ServiceInstall should just work.

 

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of BULL,
Dave, GBM
Sent: Wednesday, October 25, 2006 5:52 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Installing .NET Services

 

Hi Wix people

 

I am having problems installing a windows service written in .NET. I am
using wix 3.0.2128.0.

 

I have successfully managed to install services written in unmanaged C++
using the ServiceInstall tag, but this doesn't seem to work for my .NET
component.

 

Do I have to use the method which is mentioned here:

 

http://installneo.blogspot.com/2004/09/installing-windows-services-creat
ed.html

 

? ... or should the ServiceInstall tag work?

 

Dave

 
 

***
 
The Royal Bank of Scotland plc. Registered in Scotland No 90312.
Registered Office: 36 St Andrew Square, Edinburgh EH2 2YB. 
 
Authorised and regulated by the Financial Services Authority 
 
 
 
This e-mail message is confidential and for use by the 
 
addressee only. If the message is received by anyone other 
 
than the addressee, please return the message to the sender 
 
by replying to it and then delete the message from your 
 
computer. Internet e-mails are not necessarily secure. The 
 
Royal Bank of Scotland plc does not accept responsibility for 
 
changes made to this message after it was sent. 
 
 
 
Whilst all reasonable care has been taken to avoid the 
 
transmission of viruses, it is the responsibility of the recipient to 
 
ensure that the onward transmission, opening or use of this 
 
message and any attachments will not adversely affect its 
 
systems or data. No responsibility is accepted by The 
 
Royal Bank of Scotland plc in this regard and the recipient should carry

 
out such virus and other checks as it considers appropriate. 
 
Visit our websites at: 
 
http://www.rbos.com
 
http://www.rbsmarkets.com 
 

***
 
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Localizing WixUI in 3.0 - error LGHT0100 :The localization identifier xxx has been duplicated in

2007-04-05 Thread Julie Campbell
My apologies if this has already been answered, but I did skim all the
digests since the one this was in looking for an answer.  With the caveat
that I setup the localization to the default (en-us), this works for me
(simplified here):

  light -cultures:en-us -loc "lang\en-us\prod_en-us.wxl" -ext WixUIExtension
  <...wixlibs...>   prod.wixobj -out prod.msi

where my prod_en-us.wxl looks like this:

 
   
1033   
Create Desktop shortcut
Create shortcut in the Start
Menu
Create a Program Group with a
shortcut



I am wondering why you have a "strings.xml" file and a .wxl file, that
doesn't make sense.

Julie
[EMAIL PROTECTED]
-Original Message-
Message: 4
Date: Sat, 31 Mar 2007 10:55:40 +0200
From: "Zsolt Soczo" <[EMAIL PROTECTED]>
Subject: Re: [WiX-users] Localizing WixUI in 3.0 - error LGHT0100 :
The localization identifier xxx has been duplicated in multiple
locations.
To: wix-users@lists.sourceforge.net
Message-ID:
<[EMAIL PROTECTED]>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed

No one ever tried to localize WixUI in 3.0? I'm afraid I have to debug
light.exe. :(

Zsolt Soczo

On 3/29/07, Zsolt Soczo <[EMAIL PROTECTED]> wrote:
> I tried to localize the WixUI, but it seems I don't know ho to do that.
>
> I used the following command line:
> light.exe MyInstaller.wixobj -ext WixUIExtension -loc strings.xml
> -loc WixUI_%CULTURE%.wxl -cultures:%CULTURE% -out %1
>
> Where strings.xml contains my custom localized strings.
>
> I got 520 errors:
> WixUIExtension.dll : error LGHT0100 : The localization identifier xxx
> has been duplicated in multiple locations.  Please resolve the
> conflict.
>
> What is the correct way to localize WixUIExtension in 3.0?
>
> Regards,
> Zsolt Soczo



_
Scanned by IBM Email Security Management Services powered by MessageLabs. For 
more information please visit http://www.ers.ibm.com
_

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Installing .NET Services

2007-04-05 Thread Don Tasanasanta
How does ServiceInstall detect that you're installing a .net service as
opposed to a "regular" service?

 

I'm experiencing difficulties installing a .net service using
ServiceInstall. The service is there but doesn't seem to be registering
properly.

 

How does ServiceInstall work compared to the .net utility
InstallUtil.exe?

 



From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Rob
Mensching
Sent: Wednesday, October 25, 2006 8:12 AM
To: BULL, Dave, GBM; wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Installing .NET Services

 

ServiceInstall should just work.

 

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of BULL,
Dave, GBM
Sent: Wednesday, October 25, 2006 5:52 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Installing .NET Services

 

Hi Wix people

 

I am having problems installing a windows service written in .NET. I am
using wix 3.0.2128.0.

 

I have successfully managed to install services written in unmanaged C++
using the ServiceInstall tag, but this doesn't seem to work for my .NET
component.

 

Do I have to use the method which is mentioned here:

 

http://installneo.blogspot.com/2004/09/installing-windows-services-creat
ed.html

 

? ... or should the ServiceInstall tag work?

 

Dave

 
 

***
 
The Royal Bank of Scotland plc. Registered in Scotland No 90312.
Registered Office: 36 St Andrew Square, Edinburgh EH2 2YB. 
 
Authorised and regulated by the Financial Services Authority 
 
 
 
This e-mail message is confidential and for use by the 
 
addressee only. If the message is received by anyone other 
 
than the addressee, please return the message to the sender 
 
by replying to it and then delete the message from your 
 
computer. Internet e-mails are not necessarily secure. The 
 
Royal Bank of Scotland plc does not accept responsibility for 
 
changes made to this message after it was sent. 
 
 
 
Whilst all reasonable care has been taken to avoid the 
 
transmission of viruses, it is the responsibility of the recipient to 
 
ensure that the onward transmission, opening or use of this 
 
message and any attachments will not adversely affect its 
 
systems or data. No responsibility is accepted by The 
 
Royal Bank of Scotland plc in this regard and the recipient should carry

 
out such virus and other checks as it considers appropriate. 
 
Visit our websites at: 
 
http://www.rbos.com
 
http://www.rbsmarkets.com 
 

***
 
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] WiX 3 and the wixui

2007-04-05 Thread learnerplates

Are there Wix 3 versions of the UI libs?
If so how can I integrate them into Visual Studio?


Justin Rockwood wrote:
> 
> Using Votive you cannot target the Wix 2 stuff. You have to use Votive 2
> (supported on VS 2003) in order to target Wix 2.
> 
>  
> 
> Justin
> 
>  
> 
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of
> learnerplates
> Sent: Thursday, April 05, 2007 7:54 AM
> To: wix-users@lists.sourceforge.net
> Subject: [WiX-users] WiX 3 and the wixui
> 
>  
> 
> I've installed WiX 3 in order to get the Visual Studio integrated version.
> It works fine, and I can use sourcesafe through Visual Studio. Now I've
> just
> started to use the UI part of WiX, it's failing, I think the installed
> WiXUI
> library in Visual Studio is from Version 2 and may have come with the
> Visual
> Studio SDK! Is there anyway to get WiX 3 to work with WiX 2 UI libraries?
> I've been trying to use the example SampleWixUI found at the WiX Tutorial
>   Here's the error:
> C:\dotNET\WixSampleUI\WixSampleUI>light.exe -out SampleWixUI.msi
> SampleWixUI.wix obj "C:\Program Files\Visual Studio 2005
> SDK\2007.02\VisualStudioIntegration\Too ls\Wix\wixui.wixlib" Microsoft (R)
> Windows Installer Xml Linker version 3.0.2420.0 Copyright (C) Microsoft
> Corporation 2003. All rights reserved. C:\Program Files\Visual Studio 2005
> SDK\2007.02\VisualStudioIntegration\Tools\Wi x\wixui.wixlib : error
> LGHT0141
> : The library file format version 2.0.2207.0 is not compatible with the
> expected library file format version 3.0.2002.0. Also, does anyone know
> how
> to add the additional switch for the WixUI to the Visual Studio project
> (The
> WixProject does not appear to have commandline parameters in the project
> properties!!!) 
> 
>   _  
> 
> View this message in context: WiX 3
>   and
> the
> wixui
> Sent from the wix-users 
> mailing list archive at Nabble.com.
> 
> 
> -
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to share
> your
> opinions on IT & business topics through brief surveys-and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
> 
> 

-- 
View this message in context: 
http://www.nabble.com/WiX-3-and-the-wixui-tf3532073.html#a9858811
Sent from the wix-users mailing list archive at Nabble.com.


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Port monitor + printer driver

2007-04-05 Thread fiordean dacian
Isn't that your custom action is not scheduled correctly? I mean you should 
instruct the system to create a port monitor once your 'monitor file' was 
extracted from msi, right?

Dacian


- Original Message 
From: Friedrich Dominicus <[EMAIL PROTECTED]>
To: wix-users@lists.sourceforge.net
Sent: Wednesday, April 4, 2007 7:03:26 AM
Subject: Re: [WiX-users] Port monitor + printer driver

fiordean dacian <[EMAIL PROTECTED]> writes:

> I guess this is rather a system problem than Windows Installer. The quick
> answer is yes, you can install your printer monitor and driver from one
> installer file.
Ok, if that does work how? 

> Is this accepted by the system? 
Problem: the port monitor has to find it's way into the System32
folder but the files are not installed at least up to
MsiProcessDrivers and as I was suprised to see much later. So while
running a custom action to add the Monitor the file with the monitor
is still not accessible on the disk. It's in the .msi file of
course. But it seems there is no easy way to just pick it out and
install it manually 

>You will have to check that
> yourself.
I did and therfor I asked if there is a way. Cause I did not found it.

Regards
Friedrich

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users







 

Sucker-punch spam with award-winning protection. 
Try the free Yahoo! Mail Beta.
http://advision.webevents.yahoo.com/mailbeta/features_spam.html-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] .NET Install causes Windows Error when running program.

2007-04-05 Thread Hallquist Jr, Robert
Thanks for the response,

 

Actually I found out that the problem is due to one of my files that is
installed is not the correct size.  The file is listed in ORCA as 204K but
when it is installed, the size is 36K.  I am using a Merge Module and the
file that has problems is the first component in the merge module.  Once I
moved this file to the end of the list everything installed fine.

 

Do you know why this would happen.

 

  _  

From: Bob Arnson [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 05, 2007 10:54 AM
To: Hallquist Jr, Robert
Cc: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] .NET Install causes Windows Error when running
program.

 

Hallquist Jr, Robert wrote: 

I have created a WiX install of a .NET program and when it is run I get a
Microsoft Windows Error (the one that wants to send information to
Microsoft).


It's impossible to say without more details. What error do you get? If you
run the .exe from the command line, do you get a stack trace?




-- 
sig://boB
http://bobs.org


smime.p7s
Description: S/MIME cryptographic signature
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] WiX 3 and the wixui

2007-04-05 Thread learnerplates

Oh right,
It's Visual Studio 2005 i'm using.
Is there an editor for the WiX 2 stuff? intellisense etc, I'll probably have
to remove the Wix3 in order to get it to work with WiX 2 again!





Justin Rockwood wrote:
> 
> Using Votive you cannot target the Wix 2 stuff. You have to use Votive 2
> (supported on VS 2003) in order to target Wix 2.
> 
>  
> 
> Justin
> 
>  
> 
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of
> learnerplates
> Sent: Thursday, April 05, 2007 7:54 AM
> To: wix-users@lists.sourceforge.net
> Subject: [WiX-users] WiX 3 and the wixui
> 
>  
> 
> I've installed WiX 3 in order to get the Visual Studio integrated version.
> It works fine, and I can use sourcesafe through Visual Studio. Now I've
> just
> started to use the UI part of WiX, it's failing, I think the installed
> WiXUI
> library in Visual Studio is from Version 2 and may have come with the
> Visual
> Studio SDK! Is there anyway to get WiX 3 to work with WiX 2 UI libraries?
> I've been trying to use the example SampleWixUI found at the WiX Tutorial
>   Here's the error:
> C:\dotNET\WixSampleUI\WixSampleUI>light.exe -out SampleWixUI.msi
> SampleWixUI.wix obj "C:\Program Files\Visual Studio 2005
> SDK\2007.02\VisualStudioIntegration\Too ls\Wix\wixui.wixlib" Microsoft (R)
> Windows Installer Xml Linker version 3.0.2420.0 Copyright (C) Microsoft
> Corporation 2003. All rights reserved. C:\Program Files\Visual Studio 2005
> SDK\2007.02\VisualStudioIntegration\Tools\Wi x\wixui.wixlib : error
> LGHT0141
> : The library file format version 2.0.2207.0 is not compatible with the
> expected library file format version 3.0.2002.0. Also, does anyone know
> how
> to add the additional switch for the WixUI to the Visual Studio project
> (The
> WixProject does not appear to have commandline parameters in the project
> properties!!!) 
> 
>   _  
> 
> View this message in context: WiX 3
>   and
> the
> wixui
> Sent from the wix-users 
> mailing list archive at Nabble.com.
> 
> 
> -
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to share
> your
> opinions on IT & business topics through brief surveys-and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
> 
> 

-- 
View this message in context: 
http://www.nabble.com/WiX-3-and-the-wixui-tf3532073.html#a9857969
Sent from the wix-users mailing list archive at Nabble.com.


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] WiX 3 and the wixui

2007-04-05 Thread Justin Rockwood
Using Votive you cannot target the Wix 2 stuff. You have to use Votive 2
(supported on VS 2003) in order to target Wix 2.

 

Justin

 

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of learnerplates
Sent: Thursday, April 05, 2007 7:54 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] WiX 3 and the wixui

 

I've installed WiX 3 in order to get the Visual Studio integrated version.
It works fine, and I can use sourcesafe through Visual Studio. Now I've just
started to use the UI part of WiX, it's failing, I think the installed WiXUI
library in Visual Studio is from Version 2 and may have come with the Visual
Studio SDK! Is there anyway to get WiX 3 to work with WiX 2 UI libraries?
I've been trying to use the example SampleWixUI found at the WiX Tutorial
  Here's the error:
C:\dotNET\WixSampleUI\WixSampleUI>light.exe -out SampleWixUI.msi
SampleWixUI.wix obj "C:\Program Files\Visual Studio 2005
SDK\2007.02\VisualStudioIntegration\Too ls\Wix\wixui.wixlib" Microsoft (R)
Windows Installer Xml Linker version 3.0.2420.0 Copyright (C) Microsoft
Corporation 2003. All rights reserved. C:\Program Files\Visual Studio 2005
SDK\2007.02\VisualStudioIntegration\Tools\Wi x\wixui.wixlib : error LGHT0141
: The library file format version 2.0.2207.0 is not compatible with the
expected library file format version 3.0.2002.0. Also, does anyone know how
to add the additional switch for the WixUI to the Visual Studio project (The
WixProject does not appear to have commandline parameters in the project
properties!!!) 

  _  

View this message in context: WiX 3
  and the
wixui
Sent from the wix-users 
mailing list archive at Nabble.com.

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Why is it skipping my UI?

2007-04-05 Thread JCWrs



Bob Arnson-3 wrote:
> 
> 
> 
> Why are you specifying ExecuteAction? By placing it at sequence number 
> 1, no other UI will run before it.
> 
> -- 
> sig://boB
> http://bobs.org
> 
> 
> 

Ok, I took that out, but I get the same result...no UI.  I've been trying
different things (including not having an InstallUISequence at all) the past
couple of days, but nothing seems to work.



-- 
View this message in context: 
http://www.nabble.com/Why-is-it-skipping-my-UI--tf3528449.html#a9857513
Sent from the wix-users mailing list archive at Nabble.com.


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Why is it skipping my UI?

2007-04-05 Thread Alex Steen
Ok, I took that out, but I get the same result...no UI.  I've been
trying different things (including not having an InstallUISequence at
all) the past couple of days, but nothing seems to work.

-Original Message-
From: Bob Arnson [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 05, 2007 9:56 AM
To: Alex Steen
Cc: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Why is it skipping my UI?

JCWrs wrote:
>   
>   
>   
>   
>   
>   
>   

Why are you specifying ExecuteAction? By placing it at sequence number 
1, no other UI will run before it.

-- 
sig://boB
http://bobs.org



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] .NET Install causes Windows Error when running program.

2007-04-05 Thread Bob Arnson

Hallquist Jr, Robert wrote:


I have created a WiX install of a .NET program and when it is run I 
get a Microsoft Windows Error (the one that wants to send information 
to Microsoft).




It's impossible to say without more details. What error do you get? If 
you run the .exe from the command line, do you get a stack trace?


--
sig://boB
http://bobs.org

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] CNDL0011

2007-04-05 Thread Bob Arnson
Lars Lars wrote:
> Any reason why I receive these problems? The source files and configuration 
> is unchanged, only trying to build on another computer than the one normally 
> used.
>   

A likely cause is different versions of WiX.

-- 
sig://boB
http://bobs.org



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Per-Machine Installs that work on XP and Vista

2007-04-05 Thread Bob Arnson
Scott Palmer wrote:
> That article indicates that Windows Installer is broken for 
> per-machine installs as there is no way to specify that you must have 
> a per-machine install that works on both XP and Vista.

ALLUSERS=1 does that. Pretend ALLUSERS=2 doesn't exist.

> My ultimate goal is to install the application to a single common 
> location that is user-independent.  My current installer which only 
> sets ALLUSERS=1 tends to scatter files all over the place on Vista as 
> Vista has buggered the folder structure so some of my files appear to 
> be in a "common" place that is only common for that one user (which 
> appears to break component rules if another user installs the same 
> stuff), and some files go elsewhere.

Which files?

-- 
sig://boB
http://bobs.org



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Why is it skipping my UI?

2007-04-05 Thread Bob Arnson
JCWrs wrote:
>   
>   
>After="LaunchConditions"/>
>   
>After="InstallLoc" />
>   
>   

Why are you specifying ExecuteAction? By placing it at sequence number 
1, no other UI will run before it.

-- 
sig://boB
http://bobs.org



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Uninstall only works in the default path

2007-04-05 Thread Bob Arnson
Jason Van Eaton wrote:
> I have a weird bug.  When installing to the default path, uninstall works 
> correctly.  When installing to any other path, uninstall succeeds (that is to 
> say there are no errors) but it forgets to remove the files.  Even if I have 
> a bug in my xml, it seems there must be a bug in WIX as well, since it 
> responds differently depending on what the path is.
>
> If I had to guess, I would think my bug is using one regkey for all my 
> components.  

What do you mean by that last sentence? What does your  
hierarchy look like?

-- 
sig://boB
http://bobs.org



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Single WIX to install multiple versions

2007-04-05 Thread Bob Arnson
Davut Karabay wrote:
> I was thinking creating two sets of s one for down level and one 
> for Vista. Then adding s to each  for detecting OS 
> version, and install/not-install accordingly.
>   

That'll work fine.

-- 
sig://boB
http://bobs.org



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] WiX 3 and the wixui

2007-04-05 Thread learnerplates

I've installed WiX 3 in order to get the Visual Studio integrated version.
It works fine, and I can use sourcesafe  through Visual Studio.
Now I've just started to use the UI part of WiX, it's failing, I think the
installed WiXUI library in Visual Studio is from Version 2 and may have come
with the Visual Studio SDK!
Is there anyway to get WiX 3 to work with WiX 2 UI libraries?

I've been trying to use the example SampleWixUI  found at the 
http://www.tramontana.co.hu/wix/lesson2.php WiX Tutorial 

Here's the error:
 
C:\dotNET\WixSampleUI\WixSampleUI>light.exe -out SampleWixUI.msi
SampleWixUI.wix
obj "C:\Program Files\Visual Studio 2005
SDK\2007.02\VisualStudioIntegration\Too
ls\Wix\wixui.wixlib"
Microsoft (R) Windows Installer Xml Linker version 3.0.2420.0
Copyright (C) Microsoft Corporation 2003. All rights reserved.

C:\Program Files\Visual Studio 2005
SDK\2007.02\VisualStudioIntegration\Tools\Wi
x\wixui.wixlib : error LGHT0141 : The library file format version 2.0.2207.0
is
not compatible with the expected library file format version 3.0.2002.0.

Also, does anyone know how to add the additional switch for the WixUI to the
Visual Studio project (The WixProject does not appear to have commandline
parameters in the project properties!!!)

-- 
View this message in context: 
http://www.nabble.com/WiX-3-and-the-wixui-tf3532073.html#a9857389
Sent from the wix-users mailing list archive at Nabble.com.
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Installing packages with MSMQ queues which already exist

2007-04-05 Thread thombrown

Hi,

I'm currently having a problem with my installation package.  I've got it
successfully creating a MSMQ queue, but the problem is that the queue may
already exist on the destination machine, and in such circumstances the
installation ends prematurely.  I would want it to skip the creation of the
queue if it already exists, or if that's not possible, delete the queue
before creating it.  I can't find anything that will do either of these
things.

Is anyone able to help?
-- 
View this message in context: 
http://www.nabble.com/Installing-packages-with-MSMQ-queues-which-already-exist-tf3530355.html#a9852170
Sent from the wix-users mailing list archive at Nabble.com.


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] dependency walker shows error after a successful MSI installation

2007-04-05 Thread Constantin Bryzgalin
Hello,

> the dependency walker (depends.exe) shows an error saying that, "The
> side-by-side configuration information in the DLL contains errors". It 
> fails to find the assembly DLLs (MFC80.dll, MSVCR80.dll, MSVCP80.dll) 
> that *are* there in the WinSxS directory.

If they are installed, maybe there's something wrong with your exe's manifest?

-- 
Constantin Bryzgalin
http://www.oneclicktools.com



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users