Skip to Content

python win32 - kill process 예제

Posted on
import psutil

pid=5572
p = psutil.Process(pid)
p.kill()