Telnet on Windows: what to download and when it still makes sense

Telnet is decades old and unencrypted, yet a surprising amount of equipment on a US corporate floor still expects it: console servers, older managed switches, industrial controllers, and building systems nobody wants to touch. Windows users have two sensible ways to reach them.

Option 1 — turn on the Windows Telnet Client

  1. Press Start and search for Turn Windows features on or off.
  2. Check Telnet Client and select OK.
  3. Open Command Prompt and run telnet 192.0.2.10 23.

No download is involved — the component already ships with Windows 10 and Windows 11 and simply sits disabled by default.

Option 2 — use PuTTY as your Telnet client

The same PuTTY package you install for SSH speaks Telnet. Choose Telnet as the connection type on the Session screen, set the port, and save the profile with a name. That gets you things the command-line client never had: scrollback you can search, logging to a text file, adjustable character encoding, and a saved list of every device you touch.

Windows Telnet ClientPuTTY in Telnet mode
Session loggingManual redirection onlyBuilt-in log file per session
Saved device listNoneNamed session profiles
Also does SSHNoYes
Needs an optional feature enabledYesNo

Handling Telnet responsibly

Serial consoles: the other legacy protocol

Plenty of the same devices offer a DB-9 or USB console port. PuTTY handles that too — pick Serial, set the COM port from Device Manager, and match the speed, usually 9600 or 115200. Read how Telnet works on Windows for the protocol details behind both paths.

Telnet questions

Is there a separate Telnet download for Windows?
Two routes exist. Windows includes a Telnet Client as an optional feature you can turn on, and PuTTY includes Telnet support in the same executable you already use for SSH.
How do I enable the built-in Windows Telnet client?
Open Turn Windows features on or off, check Telnet Client, and confirm. The telnet command then works in Command Prompt and PowerShell.
Is Telnet safe to use?
Not over untrusted networks. Telnet sends everything, including passwords, in clear text. Keep it to isolated lab segments or console networks and use SSH everywhere else.
Can I test whether a TCP port is open with Telnet?
Yes, though Test-NetConnection in PowerShell reports the result more clearly and needs no optional feature enabled.