Powershell

Killing PID Processes in PowerShell

This article introduces how to kill PID processes using PowerShell command line on Windows PCs and servers. stop-process...

Shou Arisaka
1 min read
Nov 18, 2025

This article introduces how to kill PID processes using PowerShell command line on Windows PCs and servers.

stop-process -id 6464 -confirm -passthru
# or
Stop-Process -Name "line"
  • Get PID from application name
``` Get-Process *evernote* ```

Share this article

Shou Arisaka Nov 18, 2025

๐Ÿ”— Copy Links