如何在Windows中使用python创建exe启动器

时间:2011-08-15 17:14:47

标签: python windows launcher

我需要使用python脚本启动exe,但我还需要使用相同的脚本

来杀死它

一个开始的想法是:

process = magicCommand( 'theExe.exe' ) #invoke exe

kill = 'no'
while kill == 'no':
    kill = raw_input()

otherMagicCommand( process ) #kill

修改

这适用于我的窗口

process = subprocess.Popen( 'theExe.exe' ) #invoke exe

kill = 'no'
while kill == 'no':
    kill = raw_input()

process.kill() #kill

1 个答案:

答案 0 :(得分:2)

Python subprocess module以及一些好examples和解释