Answers for "known ports"

7

see what ports are in use

Get-Process -Id (Get-NetTCPConnection -LocalPort portNumber).OwningProcess
Posted by: Guest on April-02-2020
-1

port range

Port numbers can run from 0 to 65353. Port numbers from 0 to 1023 are reserved 
for common TCP/IP applications and are called well-known ports. The use of 
well-known ports allows client applications to easily locate the corresponding 
server application processes on other hosts.
Posted by: Guest on October-31-2020

Browse Popular Code Answers by Language