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) :
Thanks guy's. Your help will be appreciated...
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...