Share via

How to send a message to a different computer using command prompt on a network in Windows 7?

Anonymous
2010-09-17T10:14:21+00:00

Original title: how to send the message

how to send the message for network pc via command prompt for windows 7

Windows for home | Previous Windows versions | Internet and connectivity

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments
Answer accepted by question author
  1. Anonymous
    2010-09-23T17:28:17+00:00

    Hi

    If you do not mind putting some time in insatlling small progarm on the computers.

    This free utility. makes it easier for none skilled users, to send messages over LAN.

    http://www.fomine.com/net-send-gui.html


    Jack-MVP Windows Networking. WWW.EZLAN.NET

    10+ people found this answer helpful.
    0 comments No comments
Answer accepted by question author
  1. Anonymous
    2010-09-23T17:10:19+00:00

    Hello JohnsonKumara,

    Thank you for your post.  I think you might be referring to a net send.

    Open a command prompt > Type **net send /(*ip, computer name or username you would like to send to)***If you have trouble type net send/? for assistance within the command prompt.

    **Note: You must have ICMP traffic enabled on your network for this to work.

    Cheers


    Jason H. Microsoft Answers Support Engineer Visit our Microsoft Answers Feedback Forum and let us know what you think.

    7 people found this answer helpful.
    0 comments No comments

17 additional answers

Sort by: Most helpful
  1. Anonymous
    2013-10-16T20:03:40+00:00

    i ran into the same issue where i needed to send a message to remote computers over the network and net send is not an option. I created this small simple script that will do it without any registry tweeks. you just need suficient privilages.

    copy text below and paste in notepad. then save it as .bat

    @ECHO OFF

    color 74

    REM - Created by Joe Kazlauskas

    REM - 2OCT2013

    REM - Send a Message.

    ECHO.

    :1

    ECHO.

    set /p NAME= ENTER Remote Computer Name or IP address:

    set /p MESSAGE= Type your message here:

    wmic /node:%NAME% process call create "msg * /w %MESSAGE%"

    ECHO.

    set /p ANOTHER=Do you want to send another message: y/n?

    IF %ANOTHER%==y GOTO :1

    IF %ANOTHER%==n GOTO :2

    ECHO.

    :2

    pause

    100+ people found this answer helpful.
    0 comments No comments
  2. Anonymous
    2013-06-21T00:07:59+00:00

    it works in 7 too, just has to be enabled, as its disabled by default after xp.

    10+ people found this answer helpful.
    0 comments No comments
  3. Anonymous
    2014-01-11T16:58:34+00:00

    This works perfectly! If you don't mind me asking how did you stumble on the set /p command? I am actually in a coding/scripting class I am just trying to learn as much as possible. This works perfectly though a lot of websites tell you it is not possible without the windows messenger service running. Good on ya!

    Cheers

    2 people found this answer helpful.
    0 comments No comments