[TuT]Chat with command promt[TuT] - Printable Version +- howtothings.co.uk (https://www.howtothings.co.uk) +-- Forum: Computing (https://www.howtothings.co.uk/forumdisplay.php?fid=4) +--- Forum: Operating System and Software Support (https://www.howtothings.co.uk/forumdisplay.php?fid=17) +--- Thread: [TuT]Chat with command promt[TuT] (/showthread.php?tid=1147) |
[TuT]Chat with command promt[TuT] - xghost - 16-11-2011 Maybe , you've wondering , is it's possible to chat someone with Command promt? Yes it is Firstly, open Notepad and enter: Code: @echo off:A Clsecho MESSENGER set /p n=User: set /p m=Message: net send %n% %m% PauseGoto A Now save this as "Messenger.bat".Or whatever you like , then Open the .bat file and in Command Prompt you should see: ####### MESSENGER User: ####### After "User" type the IP address of the computer you want to contact. Example : User : 192.169.4.423 After that, you should see this: Message: Now type in the message you wish to send. Before you press "Enter" it should look like this: ######## MESSENGER User: 56.108.104.107 Message: Hi , how are you? ####### Now you just need to press "Enter" and start chatting with your friend! RE: [TuT]Chat with command promt[TuT] - WARLORDTF - 28-11-2011 Which version of DOS is this based on?? As i followed the instructions verbatim copying "@echo off:A Clsecho MESSENGER set /p n=User: set /p m=Message: net send %n% %m% PauseGoto" and it produces an error. I'm aware net send has been around for some time yet im using MS-DOS 5.1.2600 on XP and that code just hasn't worked XD RE: [TuT]Chat with command promt[TuT] - Mark - 28-11-2011 Pretty sure net send is disabled by default and not much use. RE: [TuT]Chat with command promt[TuT] - WARLORDTF - 29-11-2011 Its not. I've used netsend within school to broadcast annoying popup boxes to every machine xD |