Answers for "windows ping port"

20

windows kill port

netstat -ano | findstr :3001
taskkill /PID <yourid> /F
Posted by: Guest on October-06-2020
-2

windows kill process on port

netstat -ano | findstr :<PORT>
taskkill /PID <PID> /F
Posted by: Guest on January-14-2021
-1

ping a port windows

telnet <ip_address> <port_number>
Posted by: Guest on February-12-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language