Enabling and Using Telnet Server on Windows 10
Telnet, short for Telecommunication Network, is a network protocol used for remote login to a computer over a TCP/IP network. While it's not enabled by default in Windows 10 due to security concerns, it can still be useful for certain tasks. Here's a step-by-step guide on how to enable and use the Telnet server on Windows 10.
Enabling the Telnet Client and Server
Before you can use Telnet, you need to enable the Telnet client and server features in Windows 10. Here's how:
- Press Win + X on your keyboard and select Windows PowerShell (Admin).
- Type the following command and press Enter:
dism.exe /online /enable-feature /featurename:TelnetClient /all /norestart
- To enable the Telnet server, type the following command and press Enter:
dism.exe /online /enable-feature /featurename:TelnetServer /all /norestart
Starting the Telnet Server
After enabling the features, you can start the Telnet server. Here's how:

- Open Command Prompt as an administrator.
- Type the following command and press Enter to start the Telnet server:
net start telnet
Using the Telnet Client
Now that you have the Telnet server running, you can use the Telnet client to connect to it. Here's how:
- Open Command Prompt.
- Type the following command and press Enter to connect to the local Telnet server:
telnet localhost
- To connect to a remote Telnet server, replace
localhostwith the server's IP address or hostname.telnet 192.168.1.1
Telnet Commands
Once connected, you can use various Telnet commands to interact with the remote server. Here are some common commands:
| Command | Description |
|---|---|
open |
Connects to a specified host. |
close |
Closes the connection. |
quit |
Exits the Telnet client. |
