> ## Content Index
> Fetch the complete content index at: https://www.techielass.com/llms.txt
> Use this file to discover other available public pages before exploring further.

# Enable Telnet with PowerShell
- URL: https://www.techielass.com/enable-telnet-with-powershell/
- Published: 2017-02-09T06:00:00.000Z
- Updated: 2021-03-13T12:22:19.000Z
- Author: Sarah Lean
- Tags: PowerShell

Every now and again you need to troubleshoot firewall rules and Telnet is a great tool to help understand if a port is open or not between two devices.

However Telnet is not enabled by default anymore, it has been like that since Windows Server 2008.

The following Powershell commands will help you to quickly enable it: `Import-Module Servermanager Add-WindowsFeature Telnet-Client`

Installing the Telnet client doesn't require a reboot.

The client can also be removed easily via Powershell with these commands: `Import-Module Servermanager Remove-WindowsFeature Telnet-Client`