PoshTip #22 – How to kill a process?

PoshTip #22 – How to kill a process?

You can use PowerShell to kill a Windows process if the Windows service is not responding. First, you need to find the process ID:

Get-Process | ? {$_.ProcessName -eq "Notepad"}

Handles  NPM(K)    PM(K)      WS(K) VM(M)   CPU(s)     Id ProcessName
-------  ------    -----      ----- -----   ------     -- -----------
     92       9     1500      10308    95     0.06    976 notepad

To stop a process, you can pipe the “Get-Process” cmdlet to the “Stop-Process” cmdlet:

Get-Process | ? {$_.ProcessName -eq "Notepad"} | Stop-Process

You can also do the same thing with the PID:

Stop-Process -id 976

 

Thanks for reading! You can follow me on Twitter @PrigentNico

 

 

 

About Nicolas 282 Articles
I work as an IT Production Manager, based in Paris (France) with a primary focus on Microsoft technologies. I have 10 years experience in administering Windows Servers. . I am a Microsoft MVP for Cloud & Datacenter Management. I also received the PowerShell Hero 2016 award by PowerShell.0rg. And finally, I am "MCSE: Cloud Platform and Infrastructure", "MCSA: Windows Servers", "Administering & Deploying SCCM", and CheckPoint CCSA certified.