Windows: Fastest way of killing a process running on a specific port

I am going over this process many times. I have to kill a process on a Windows machine and I just know its port. Normally the steps are as below: Find the PID by looking at the ports (example port 8084) List the processes running on ports

netstat -a -o -n 

And then kill the process on that port with the following command

taskkill /F /PID <pid> 

Is there any thing like a pipe or similar that I can use on Windows OS to run this command in one line!?

2

3 Answers

Is there any thing like a pipe or similar that I can use on Windows OS to run this command in one line?

Both cmd.exe and PowerShell support pipes from one command to another. In PowerShell something like (this should be on a single line on the command line, or use ` to escapte newlines in a script):

netstat -ano | select -skip 4 | % {$a = $_ -split ' {3,}'; New-Object 'PSObject' -Property @{Original=$_;Fields=$a}} | ? {$_.Fields[1] -match '15120$'} | % {taskkill /F /PID $_.Fields[4] } 

Where:

  • Select -skip 4 skips the first four header lines. (Select is short for Select-Object used to perform SQL SELECT like projects of objects.
  • % is short for Foreach-Object which performs a script block on each object ($_) in the pipeline and outputs the results of the script block to the pipeline. Here it is first breaking up the input into an array of fields and then creating a fresh object with two properties Original the string from netstat and Fields the array just created.
  • ? is short for Where-Object which filters based on the result of a script block. Here matching a regex at the end of the second field (all PowerShell containers a zero based).

(All tested except the last element: I don't want to start killing processes :-)).

In practice I would simplify this, eg. returning just 0 or the PID from the first foreach (which would be designed to ignore the headers) and filter on value not zero before calling taskkill. This would be quicker to type but harder to follow without knowing PowerShell.

3

Open command prompt and execute:

for /f "tokens=5" %a in ('netstat -aon | find "8080"') do taskkill /f /pid %a 

If you want to do it in a batch file instead, replace %a with %%a and | with ^|.

If you just want to kill the one that is listening on that port append | find "LISTENING" at the end of the other find.

Here is a convenient function that you can use:

killp 8081 

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like