Chat Between Computers Using CMD (Dos)

Leave a Comment
to sending messages from computer A to computer B through the command cmd (dos) can be done in the following ways:

copy this script:
    @echo off
    :A
    Cls
    echo MESSENGER
    set /p n=User:
    set /p m=Message:
    net send %n% %m%
    Pause
    Goto A
save with the name chat.bat

0 comments:

Post a Comment