Windows CMD
Find process runing on a port
netstat -ano | findstr 1433
a -> Displays all connections and listening ports.
n -> Displays addresses and port numbers in numerical form.
o -> Displays the owning process ID associated with each connection.
Full Screen the command prompt
type wmic in command line
netstat -ano | findstr 1433
a -> Displays all connections and listening ports.
n -> Displays addresses and port numbers in numerical form.
o -> Displays the owning process ID associated with each connection.
Full Screen the command prompt
type wmic in command line


0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home