Windows

How to Install Telnet on Windows 11 Easily

Richard
Written by
Richard
Sep 27, 2021 Updated Apr 14, 2026 3 min read
How to Install Telnet on Windows 11 Easily

Telnet is a tool that lets you connect to another computer using a text-based command screen. While it is older and not very secure, it is still helpful for testing network connections or checking if a server is reachable. Most people now use SSH instead, but Telnet remains a quick way to troubleshoot connectivity issues.

Why use Telnet?

You should use Telnet if you need a fast way to check if a specific port is open on a remote server or to test firewall settings. It is a simple diagnostic tool for your network.

What happens when done?

Once you finish these steps, your computer will be able to communicate with other devices using the Telnet protocol through your command line interface.

How to enable Telnet on Windows 11

Follow these steps to turn on Telnet using the Windows settings menu.

  1. Open the Start Menu, search for Control Panel, and open it.
Control Panel search in Windows 11 for Telnet installation

  1. Click on the Programs category.
Programs category in Windows 11 Control Panel

  1. Select the link labeled Turn Windows features on or off. %%LNK0%%
Turn Windows features on or off in Windows 11

  1. Find Telnet Client in the list, check the box next to it, and click OK.
Selecting Telnet Client to install on Windows 11

Windows will now download and install the necessary files. Once finished, you can open your command prompt to start using it.

Using Telnet in command prompt on Windows 11

How to install Telnet via Command Prompt

You can also install Telnet using the command line. Note: This requires admin privileges.

  1. Click the Start Menu and search for Command Prompt.
  2. Right-click the app and choose Run as administrator.
Administrator command prompt in Windows 11 for Telnet

  1. Type the following command and press Enter:
💻Code
dism /online /Enable-Feature /FeatureName:TelnetClient

How to install Telnet via PowerShell

PowerShell is another way to install the feature. Note: This requires admin privileges.

  1. Search for PowerShell in the Start Menu.
  2. Right-click it and select Run as administrator.
  3. Run this command:
💻Code
Install-WindowsFeature -name Telnet-Client

Summary

Telnet is a legacy network tool used primarily for testing connections. You can enable it through the Windows Control Panel, or by using the dism command in an administrator Command Prompt, or the Install-WindowsFeature command in an administrator PowerShell window.

How do I enable Telnet on Windows 11?

To enable Telnet on Windows 11, open the Control Panel, go to Programs, and click on 'Turn Windows features on or off.' Check the box for Telnet Client and click OK to install it.

Can I install Telnet using Command Prompt?

Yes, you can install Telnet using Command Prompt. Open Command Prompt as an administrator and run the command 'dism /online /Enable-Feature /FeatureName:TelnetClient' to enable it.

Is Telnet still useful today?

While Telnet is considered insecure and has largely been replaced by SSH, it can still be useful for testing connectivity in certain situations, such as checking remote SQL connections or firewall settings.

How do I install Telnet via PowerShell?

To install Telnet via PowerShell, open PowerShell as an administrator and run the command 'Install-WindowsFeature -name Telnet-Client.' This will enable the Telnet Client on your system.

What is Telnet and why would I use it?

Telnet is a network protocol that allows access to a command-line interface on a remote host. It is often used for testing purposes, despite its security vulnerabilities, particularly in controlled environments.

Was this guide helpful?

Tags: #Windows 11
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, the owner and lead writer at Geek Rewind, is a tech enthusiast passionate about simplifying complex IT topics. His years of hands-on experience in system administration and enterprise IT operations have honed his ability to provide practical insights and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

2464 articles → Twitter

📚 Related Tutorials

How to Disable Command Prompt in Windows 11
Windows How to Disable Command Prompt in Windows 11
How to Access Control Panel in Windows 11
Windows How to Access Control Panel in Windows 11
Change PowerShell Execution Policies in Windows 11
Windows Change PowerShell Execution Policies in Windows 11

Leave a Reply

Your email address will not be published. Required fields are marked *