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
This article introduces how to kill PID processes using PowerShell command line on Windows PCs and servers. stop-process...
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"