THE ANONYMOUS MESENGER

Discussion forum for all Windows batch related topics.

Moderator: DosItHelp

Post Reply
Message
Author
SHARKZ
Posts: 1
Joined: 12 Mar 2017 06:48

THE ANONYMOUS MESENGER

#1 Post by SHARKZ » 19 Aug 2017 16:38

hi here i just wanted to share with you my new messaging batch program with you all
the download link will be here the code also bye :mrgreen:
please share me feed back of the program and try finding bugs and upgrading it
the link to the files :**** the rar code is 4 fun
the code (for the sender):

Code: Select all

[color=#BF00FF]@echo off
title _-_-_-message sender-_-_-_
echo sender

echo                                    ++++//////////://:////////+
echo                                 +//:-...`````````````````````````....-:
echo                               +:.````````````````````````````````````````.
echo                          +:.````````````````````````````````````````````.:
echo                         +-````````````````````````````````````````````````:
echo                         :``````````````````````````````````````````````````:
echo                        +``````.://///:-.````````````````````.-://///:.``````+
echo                        -````-+syhhddhso/--.``````````````.--/+shddhhys+-````-
echo                        +````/oo++++ooshddh+-``````````````-+yddhsoo++++oo/````+
echo                       :```.-......-://++shdy/.````````.:ydhso+//:--.....-.```:
echo                       -``````````````..:/++yd/````````/dy++/:..``````````````-
echo                      +.``````````````````-/+/``````````/+/-``````````````````.+
echo                      +`````````.-::://::..`-/-````````-/-`..:://:::-.`````````+
echo                      +```.```./++shddddhyo/-.-.``````.-.-/+yhddddys++/.```.```+
echo                      +```---:o/yNNNMMMMNNNys.`-``````-`.syNNNMMMMNNNy/o:---```+
echo                      /```-:/:://+ooooooo+/:-``:.````.:``-:/+ooooooo++/::/:-```/
echo                      /``.````````.----..`````.+.````.+.`````..----.````````.``/
echo                      +```````````````````````/+.````.+/```````````````````````+
echo                      +`````````````````````./++.````.++/.`````````````````````+
echo                      +.```````````````````-/--+``````+--/-```````````````````.
echo                       .```````````````.-`:-``-/``````/-``-:`-.```````````````.
echo                       :``--.`````..-:::..-```::``````::```-..:::-..`````.--``:
echo                       +``.+/-oyo--..`````.`-+::-....-::+-`.`````..--oyo-/+.``+
echo                       -``:+:.yMh-``````````-/o//////+/-``````````-hMy.:+:``-
echo                        +```:+:.+Nm/````````.oNMMNhhNMMNo.````````/mNo.:+:```+
echo                        :```:+:`:mNhsoossyhmMMMN+..+NMMMmhyssooohNm:`:+:```:
echo                         +-```-+/.-sdmmmmmmmmNmh-````-hNNNmNNNmmmds-./+:```-
echo                          +.```.//........../ooo+oooo+ooo/..........//.```.
echo                           +.````-:....````````````````````````....:-````.
echo                            +-````.-.```````````-::::-```````````.-.````-
echo                             +:`````..``````````:mNNm:``````````..`````:
echo                              +/.`````.``````````hMMh``````````.`````./
echo                                +:``````````````.NMMN.``````````````:
echo                                  +-````````````/MMMM/````````````-
echo                                   +/-.`````````+MMMM+`````````.-/
echo                                      +:.```````-MMMM:```````.
echo                                        +/:.`````dMMd`````.-/
echo                                           +/:-.`-mm:`.-:/

echo                            _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
echo                       _-_-_       the anonymous mesenger       _-_-_
echo                            _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_

echo welcome to the chat room
echo.
set /p "username= enter your name:"
echo %username% Has joined! >> join .dat

:Message
set /p "message= Say:"
goto Send
:Send
echo %username%: %message% >>log.dat
goto Message  [/color]


the code (for the reader):

Code: Select all

[color=#BFBF00]@echo off
title --THE ANONYMOUS MESSAGE READER--
:Read
cls
type log.dat
echo.
type log.dat
echo.
ping 192.0.2.2 -n 1 -w 100 >nul
goto Read[/color]

thank you :D :lol:
Last edited by aGerman on 20 Aug 2017 04:03, edited 1 time in total.
Reason: Dead link removed

thefeduke
Posts: 211
Joined: 05 Apr 2015 13:06
Location: MA South Shore, USA

Re: THE ANONYMOUS MESENGER

#2 Post by thefeduke » 20 Aug 2017 15:16

If you are interested in ths kind of thing, here is some good reading:http://www.dostips.com/forum/viewtopic.php?f=3&t=7078 Post subject: Send commands to a cmd window through a .bat file - Rejected StackOverflow question.

dbenham
Expert
Posts: 2461
Joined: 12 Feb 2011 21:02
Location: United States (east coast)

Re: THE ANONYMOUS MESENGER

#3 Post by dbenham » 20 Aug 2017 15:56

Actually, more relevant is this StackOverflow post with a fully functioning CHAT.BAT script that allows any number of people to communicate via pure batch. It works as long as all participants have read/write access to a shared network folder.

I'm a bit surprised that no one has up voted or commented on that post. The chat function works surprisingly well.


Dave Benham

Post Reply