473,404 Members | 2,114 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,404 software developers and data experts.

Messages queue - are they installed and if not can I install them myself?

UJ
I have a set of programs that is going to be dependent on Window's Message
Queues. Is there any way I can check to see if Messaging Queues has been
installed and if not install it?

TIA - Jeff.
Feb 7 '06 #1
5 1471
Hello UJ,

Try to create private queue
MessageQueue myQueue = MessageQueue.Create(@".\private$\incoming");

It should return error

U> I have a set of programs that is going to be dependent on Window's
U> Message Queues. Is there any way I can check to see if Messaging
U> Queues has been installed and if not install it?

---
WBR,
Michael Nemtsev :: blog: http://spaces.msn.com/laflour

"At times one remains faithful to a cause only because its opponents do not
cease to be insipid." (c) Friedrich Nietzsche
Feb 7 '06 #2
UJ
OK. That can tell me if they aren't installed. How can I install it
silently? I need to do it without any user intervention.

J.

"Michael Nemtsev" <ne*****@msn.com> wrote in message
news:9c**************************@msnews.microsoft .com...
Hello UJ,

Try to create private queue
MessageQueue myQueue = MessageQueue.Create(@".\private$\incoming");

It should return error

U> I have a set of programs that is going to be dependent on Window's
U> Message Queues. Is there any way I can check to see if Messaging
U> Queues has been installed and if not install it?

---
WBR,
Michael Nemtsev :: blog: http://spaces.msn.com/laflour

"At times one remains faithful to a cause only because its opponents do
not cease to be insipid." (c) Friedrich Nietzsche

Feb 8 '06 #3
Hello UJ,

I don't think it's a good way, only because user may don't have admin rights
U> OK. That can tell me if they aren't installed. How can I install it
U> silently? I need to do it without any user intervention.
U>
Try to create private queue
MessageQueue myQueue = MessageQueue.Create(@".\private$\incoming");
It should return error

U> I have a set of programs that is going to be dependent on Window's
U> Message Queues. Is there any way I can check to see if Messaging
U> Queues has been installed and if not install it?


---
WBR,
Michael Nemtsev :: blog: http://spaces.msn.com/laflour

"At times one remains faithful to a cause only because its opponents do not
cease to be insipid." (c) Friedrich Nietzsche
Feb 8 '06 #4
UJ
So does that mean there is no way for me to install message queues without
human intervention? I'm trying to update our programs in the field and do it
without any human intervention if message queues are not already installed.

J.

"Michael Nemtsev" <ne*****@msn.com> wrote in message
news:9c**************************@msnews.microsoft .com...
Hello UJ,

I don't think it's a good way, only because user may don't have admin
rights
U> OK. That can tell me if they aren't installed. How can I install it
U> silently? I need to do it without any user intervention.
U>
Try to create private queue
MessageQueue myQueue = MessageQueue.Create(@".\private$\incoming");
It should return error

U> I have a set of programs that is going to be dependent on Window's
U> Message Queues. Is there any way I can check to see if Messaging
U> Queues has been installed and if not install it?


---
WBR,
Michael Nemtsev :: blog: http://spaces.msn.com/laflour

"At times one remains faithful to a cause only because its opponents do
not cease to be insipid." (c) Friedrich Nietzsche

Feb 8 '06 #5
No, MSMQ is an optional system component, it should be installed as part of
the system deployment. Depending on the mode (workgroup or AD), the
installer needs to get some questions answered possibly holding security
critical information like passwords and it must be run by an administrator.

Willy.

"UJ" <fr**@nowhere.com> wrote in message
news:eC*************@TK2MSFTNGP10.phx.gbl...
| So does that mean there is no way for me to install message queues without
| human intervention? I'm trying to update our programs in the field and do
it
| without any human intervention if message queues are not already
installed.
|
| J.
|
| "Michael Nemtsev" <ne*****@msn.com> wrote in message
| news:9c**************************@msnews.microsoft .com...
| > Hello UJ,
| >
| > I don't think it's a good way, only because user may don't have admin
| > rights
| >
| >
| > U> OK. That can tell me if they aren't installed. How can I install it
| > U> silently? I need to do it without any user intervention.
| > U>
| >>> Try to create private queue
| >>> MessageQueue myQueue = MessageQueue.Create(@".\private$\incoming");
| >>> It should return error
| >>>
| >>> U> I have a set of programs that is going to be dependent on Window's
| >>> U> Message Queues. Is there any way I can check to see if Messaging
| >>> U> Queues has been installed and if not install it?
| >
| > ---
| > WBR,
| > Michael Nemtsev :: blog: http://spaces.msn.com/laflour
| >
| > "At times one remains faithful to a cause only because its opponents do
| > not cease to be insipid." (c) Friedrich Nietzsche
| >
| >
|
|
Feb 8 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
by: Flip | last post by:
I've been reading about message queues (ex http://www.devx.com/dotnet/Article/27560) and I thought I had installed the message queue from the IIS install, and I can see it running in Services, but...
3
by: Brian Keating | last post by:
hello, doesn anyone know how to deploy message queues? I've got a program which uses message queues and i wish to deploy it, one click deployment in vs2005 doesn't allow me to specify message...
3
by: Sun | last post by:
If the email server goes down, I won't be able to send messages using SmtpMail. I'll get a "Could not Access CDO.Message ..." error. Is there a way to queue the message so that it can be sent out...
2
by: Al Wilkerson | last post by:
Does anyone know why smtp messages stay in the queue folder? Every time I send a message using my local smtp server I get no error, but I never receive the message, and the messages just stay in...
0
by: Manfred Braun | last post by:
Hi All, I have a problem reading queue-messages async. My QueueReader has a Start() and a Stop() method and if my app starts, it calls Start(). The problem is, that there are possibly several...
2
by: SammyBar | last post by:
Hi all, I'm trying to send a message from ASP.NET to another PC by using MSMQ. I created my ASP.NET project by using Visual Studio 2005 but I initially set the project to be located on the File...
0
by: neonspark | last post by:
I'm buidling some simple macro functionality for my app so the users can record a sequence of keyboard inputs and replay them reliably via some menu. Originally, I used: protected override bool...
0
by: TweetyRocks | last post by:
Hi All, I have 2 Dot Net Windows services. The 1st service inserts a message into an MSMQ queue. The second service picks it up from the queue and processes it. It then removes it from the queue...
3
by: scriptlearner | last post by:
I am trying to put up a queue (through a logging thread) so that all worker threads can ask it to log messages. However, the problem I am facing is that, well, the logging thread itself is running...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.