码迷,mamicode.com
首页 > 编程语言 > 详细

Python学习(五):启动和关闭exe

时间:2020-02-04 23:52:28      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:chat   har   note   arm64   微信   one   sys   关闭   class   

#启动
import win32api
#0.打开ONENOTE
win32api.ShellExecute(0,open,rC:\...\ONENOTEM.EXE,‘‘,‘‘,1)
#1.打开TIM
win32api.ShellExecute(0,open,rC:\...\TIM.exe,‘‘,‘‘,1)
#2.打开微信
win32api.ShellExecute(0,open,rC:\...\WeChat.exe,‘‘,‘‘,1)
#3.打开chrome
win32api.ShellExecute(0,open,rC:\...\chrome.exe,‘‘,‘‘,1)
#4.打开IDEA
win32api.ShellExecute(0,open,rC:\...\idea64.exe,‘‘,‘‘,1)
#5.打开PyCharm
win32api.ShellExecute(0,open,rC:\...\pycharm64.exe,‘‘,‘‘,1)

#关闭
import os
os.system(chcp 65001)
#0.关闭ONENOTE
os.system("taskkill /F /IM ONENOTEM.EXE")
#1.关闭TIM
os.system("taskkill /F /IM TIM.exe")
#2.关闭微信
os.system("taskkill /F /IM WeChat.exe")
#3.关闭chrome
os.system("taskkill /F /IM chrome.exe")
#4.关闭IDEA
os.system("taskkill /F /IM idea64.exe")
#5.关闭PyCharm
os.system("taskkill /F /IM pycharm64.exe")

 

Python学习(五):启动和关闭exe

标签:chat   har   note   arm64   微信   one   sys   关闭   class   

原文地址:https://www.cnblogs.com/liw66/p/12261838.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!