'telnet' is not recognized as an internal or external command,operable program or batch file

I'm working on an InfoSec exercise, specifically sending emails in cmd that makes use of telnet. Unfortunately, I can't start it. I'm receiving the "'telnet' is not recognized as an internal or external command,operable program or batch file." from cmd when I type telnet. Can someone please tell me on what to install and its procedures for me to access telnet command in CMD. Thanks!

1

3 Answers

I hope you are using Windows 7.

Telnet is disabled by default, so to enable it follow these steps:

  1. Open the Control Panel
  2. Go to Programs & Features
  3. In left bar select "Turn Windows features on or off"
  4. Find "Telnet Client" and tick it
  5. Click "OK"

Telnet should be working now.

3

Telnet is a Windows feature that needs to be enabled.

Control Panel > Programs & Features > Turn Windows features on or off > check the box at Telnet Client

1

You can install telnet client by using DISM command-line tool, e.g.:

dism /online /Enable-Feature /FeatureName:TelnetClient

or using pkgmgr (deprecated in favor of above):

pkgmgr /iu:"TelnetClient"

Usage

The syntax is:

telnet example.com 80

where example.com is your destination host (can be localhost for local PC) and 80 is the port number.

When you connect, to disconnect, hit Control+], then type quit command to exit.

1

You Might Also Like