0% found this document useful (0 votes)
47 views

Chat

This batch script clears the screen and displays "MESSENGER". It then prompts the user for a name and message, and uses the net send command to send the message to the given user. After pausing, it loops back to the start to allow continuous messaging.

Uploaded by

kktamang09
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
47 views

Chat

This batch script clears the screen and displays "MESSENGER". It then prompts the user for a name and message, and uses the net send command to send the message to the given user. After pausing, it loops back to the start to allow continuous messaging.

Uploaded by

kktamang09
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

@echo off

:A
Cls
echo MESSENGER
set /p n=User:
set /p m=Message:
net send %n% %m%
Pause
Goto A

You might also like