Search
 
SCRIPT & CODE EXAMPLE
 

TYPESCRIPT

how to see what program is using a port

netstat -a -b -o

netstat -a -b -o | find "###"         this will only find the port specified

-a Displays all connections and listening ports.

-b Displays the executable involved in creating each connection or listening port. In some cases well-known executables host multiple independent components, and in these cases the sequence of components involved in creating the connection or listening port is displayed. In this case the executable name is in [] at the bottom, on top is the component it called, and so forth until TCP/IP was reached. Note that this option can be time-consuming and will fail unless you have sufficient permissions.

-n Displays addresses and port numbers in numerical form.

-o Displays the owning process ID associated with each connection.

https://stackoverflow.com/questions/48198/how-can-you-find-out-which-process-is-listening-on-a-tcp-or-udp-port-on-windows
Comment

PREVIOUS NEXT
Code Example
Typescript :: ERROR: Could not find a version that satisfies the requirement mediapipe (from versions: none) ERROR: No matching distribution found for mediapipe 
Typescript :: ngclass stackoverflow 
Typescript :: display current directory contents in a long format with user and group ids displayed numerically 
Typescript :: import on save typescript 
Typescript :: react ts createcontext 
Typescript :: define array in typescript react useState 
Typescript :: angular convert boolean to string 
Typescript :: components meaning 
Typescript :: running scripts is disabled on this system 
Typescript :: typescript formik useFormik 
Typescript :: mysqli_select_db expects 2 parameters 
Typescript :: lifecycle components android dependency 
Typescript :: number of digits in a number python 
Typescript :: latex figure over two columns 
Typescript :: advantages of automation 
Typescript :: ts error type 
Typescript :: react routes not working after build 
Typescript :: typescript class constructor 
Typescript :: typescript function return array 
Typescript :: Typescript node start script 
Typescript :: classes in typescript 
Typescript :: an attempt was made to access a socket in a way forbidden by its access permissions 
Typescript :: how to declare an empty array in typescript 
Typescript :: howt o make sure its a valid sudoku in python 
Typescript :: typescript get type 
Typescript :: How to specify output directory in TypeScript? 
Typescript :: extend typescript 
Typescript :: typescript list concat 
Typescript :: nodemailer typescript 
Typescript :: how to clear known_hosts in ssh 
ADD CONTENT
Topic
Content
Source link
Name
8+2 =