First open Notepad and write this
@echo off
:A
Cls
echo MESSENGER
set /p n=User:
set /p m=Message:
net send %n% %m%
Pause
Goto A
and then save as "Messenger.bat" and close the Notepad
Remove these ads by
Signing UpStep 1:
whit this.
Messenger
User:
after "User" write the ip of the computer you want to contact and then press enter.


































Visit Our Store »
Go Pro Today »




echo Messenger
echo When typing the computer name, type
echo in /server:computer replacing
echo computer with the IP adress of the computer.
:START
set /p c=Enter computer name here:
:A
set /p m=Enter message here:
msg * %c% %m%
GoTo A
This allows you to create a messenger on Windows 7 and after entering the ip address of the computer for the first you can simply send messages after that, without needing to re-enter the ip address
By the way, it's no problem as long as you give credit to where credit is due. :)
Want to learn to?
open up a cmd-window and mess around with it. I learned it like that too.
Now I make games in batch^^.
([WIN]+[R], a run-window appears, write "cmd" and press enter).
change the net send command to msg
is useless because it only allows to chat by LAN (local network)
and i beleave most people is not connected to others by lan and you have to tell username eachtime you want to say something.. will be better if u say user once and to have a option to change username whenever u want.