本帖最后由 root_hs 于 2020-8-7 09:31 编辑
初衷:
每次开机需要打开多个办公程序,本人比较懒,就写了一个开机后运行python程序自己启动相关添加程序。 给有需要的吾友试试。
1、需要安装win 库
2、 3.6 写的,
3、路径改为自己电脑需要运行的软件路径。怎么运行就不说了哈
上源码
[Python] 纯文本查看 复制代码 #coding=utf-8
import os
import win32api,win32con
import time
'''
python 3.6
win pip安装命令
pip install pypiwin32
'''
exenlist=[]
#添加启动路径,需要添加,继续复制修改路径就可以了
exenlist.append(r'D:\toos\***\clover337\Clover\Clover.exe')
exenlist.append(r'D:\toos\***\Coremail\CoremailClient\Coremail-PC.exe')
exenlist.append(r'D:\toos\***\WeChat\WeChat.exe')
exenlist.append(r'D:\toos\tenct\TIM\Tencent\TIM\Bin\QQScLauncher.exe')
exenlist.append(r'D:\toos\tenct\TencentDocs\TencentDocs.exe')
exenlist.append(r'D:\toos\tenct\DingDing\DingtalkLauncher.exe')
def open_app(app_dir):
os.startfile(app_dir)
inle=1
if __name__ == "__main__":
#app_dir = exenlist
for exels in exenlist:
print("软件启动中........ "+exels)
open_app(exels)
print("启动完成......" + exels)
time.sleep(5)
print("************************************************\r\n所有程序启动完成****************************************************" )
logsys = win32api.MessageBox(0, "程序已经启动完成,可以开始工作", "程序已经启动完成....", win32con.MB_OK) |