Messenger service, issues on startup...

Associate
Joined
27 Aug 2006
Posts
435
OK, this is a good one:

1) start > run > services.msc > messenger > automatic > start (applied on PC "A "and PC "B")

2) PC A "net send (PC "A") test" - Works fine

3) PC A "net send (PC "B") test" - Works fine

4) PC B "net send (PC "B") test" - Works fine

5) PC B "net send (PC "A") test" - Works fine

6) Restart PC "A" and PC "B"

7) Check service "messenger" through start > run > services.msc > messenger service is started and set to automatic

8) Repeat steps 2 - 5 however none work

9) start > run > services.msc > messenger > stop > start (applied on PC "A "and PC "B")

9) Repeat steps 2 - 5, working fine

Why does the service not work when it clearly states in services.msc the service in running and require a stop / start to work >>> ???

I know I could write a batch to run on startup but I would rather the service just "work". Any ideas?

I am creating a simple batch to work as a messenger between two PC's instead of shouting to the other person across the hallways. Here is the code (works a treat) :

Code:
@echo off
set /p choice=Enter Message:
echo.
echo Please Wait, Sending Message...
net send (NETBIOS NAME HERE WITHOUT BRACKETS) %choice%


Thanks guy's. Your help will be appreciated...
 
Dr_Evil said:
allow messenger communication through group policy.

check your firewall

Firewall is good as if the firewall was blocking it. It wouldent allow the communication success in the first instance.

How do I allow it through group policy? Havent done this before.

Voo said:
If it was GPO, it wouldn't allow messenger communication at all.

So the group policy part dosent matter in this circumstance?
 
Dr_Evil said:
GPO settings overrule firewall settings.

on the server, manage group policy objects.

There is no "server", just two Home PC's running Microsoft Windows XP Home SP2.

Why is it that they work when the service "messenger" is stopped and then started (lasts the whole session) and then once restarted, not work. Even though it cleary states in services.msc that it is. And then works once again when the service on both PC's is stopped / started?

Very strange if you ask me. Must be a reason for it.
 
bluetech said:
There is no "server", just two Home PC's running Microsoft Windows XP Home SP2.

Why is it that they work when the service "messenger" is stopped and then started (lasts the whole session) and then once restarted, not work. Even though it cleary states in services.msc that it is. And then works once again when the service on both PC's is stopped / started?

Very strange if you ask me. Must be a reason for it.

Maybe that's the reason - as your PC's are not in the same Domain, security prohibits from the messages to be received...
 
Dr_Evil said:
Maybe that's the reason - as your PC's are not in the same Domain, security prohibits from the messages to be received...

If this is the case. Then why do they initially send? We are in the same "workgroup".
 
I'm in a windows domain here, using a SBS, and the net send command runs properly and it looks as if the messages have been sent, but they never arrive.
 
Back
Top Bottom