How to Enable Telnet and TFTP in Windows 11
This guide provides straightforward instructions for enabling the built-in Telnet and TFTP (Trivial File Transfer Protocol) client utilities in Windows 11. While both tools are disabled by default for security purposes, you can quickly activate them using the graphical Windows Features menu, the Command Prompt, or Windows PowerShell.
Method 1: Enable via Windows Features (GUI)
- Press the Windows Key + R to open the Run dialog box.
- Type
optionalfeaturesand press Enter. - In the Windows Features window that appears, scroll down the list.
- Check the box next to Telnet Client.
- Check the box next to TFTP Client.
- Click OK.
- Windows will download and apply the necessary files. Once complete, click Close.
Method 2: Enable via Command Prompt (DISM)
Press the Windows Key, type
cmd, right-click on Command Prompt, and select Run as administrator.To enable the Telnet client, enter the following command and press Enter:
dism /online /Enable-Feature /FeatureName:TelnetClientTo enable the TFTP client, enter the following command and press Enter:
dism /online /Enable-Feature /FeatureName:TFTPWait for the operations to complete successfully.
Method 3: Enable via Windows PowerShell
Press the Windows Key + X and select Terminal (Admin) or search for PowerShell, right-click it, and choose Run as administrator.
To enable the Telnet client, run:
Enable-WindowsOptionalFeature -Online -FeatureName TelnetClientTo enable the TFTP client, run:
Enable-WindowsOptionalFeature -Online -FeatureName TFTPIf prompted to restart your computer, press Y to proceed, though a restart is typically not required.
Verifying the Installation
To verify that the utilities are active:
- Open Command Prompt or PowerShell.
- Type
telnetand press Enter. If active, the prompt will change toMicrosoft Telnet>. Typequitto exit. - Type
tftpand press Enter. If active, the system will display the TFTP usage instructions and available parameters.