Computer
(Windows) 명령줄로 프로세스 관리하기
steloflute
2021. 7. 10. 00:34
cmd:
tasklist
taskkill /F /PID pid_number
taskkill /IM "process name" /F
PowerShell:
get-process|where-object ProcessName -EQ powershell
get-process|where-object ProcessName -like power*
Stop-Process -Name "ProcessName" -Force
Stop-Process -ID PID -Force