Wiki/TelNet: Difference between revisions

From Piszczynski
piszczynski>Aleks
(Created page with " == Using Telnet to test open ports == You will need to enable Telnet in CMD dism /online /enable-feature /featurename:telnetclient")
 
m (3 revisions imported)
 
(2 intermediate revisions by 2 users not shown)
Line 5: Line 5:


dism /online /enable-feature /featurename:telnetclient
dism /online /enable-feature /featurename:telnetclient
Or use this in powershell
Install-WindowsFeature -name Telnet-Client
Then use command telnet <IP address or hostname> <portnumber>
If the window opens to a blank window it means the port is open

Latest revision as of 22:32, 15 November 2023

Using Telnet to test open ports

You will need to enable Telnet in CMD

dism /online /enable-feature /featurename:telnetclient

Or use this in powershell

Install-WindowsFeature -name Telnet-Client

Then use command telnet <IP address or hostname> <portnumber>

If the window opens to a blank window it means the port is open