当前位置:主页 > 软件编程 > Python代码 >

查看端口并杀进程python脚本代码

时间:2020-10-03 10:13:33 | 栏目:Python代码 | 点击:

我就废话不多说,直接上代码吧:

# -*- coding: utf-8 -*-
import os
out=os.system('netstat -aon|findstr "25"')#25端口号
print(out)#输出进程
out=os.system('tasklist|findstr "3316"')#3316进是程
print(out)#输出程序名字
out=os.system('taskkill /f /t /im MESMTPC.exe')#MESMTPC.exe程序名字
print(out)#

依次手动执行每个命令

您可能感兴趣的文章:

相关文章