python:在Windows服务中执行命令

时间:2016-05-05 19:40:22

标签: python windows-services

我正在研究用Python编写的Windows服务。 我想通知用户一些事情,因为它似乎无法在服务中完成我编译的小程序tip.exe,弹出任务栏通知。 用法是:path / to / tip.exe" title" "通知文本" 如果我在cmd中使用它,它可以工作,但我所有的尝试:

 command='"{}" "{}" "{}"'.format(balloon_exe, title, message)
result=subprocess.Popen(command, shell=True, stderr=subprocess.PIPE, stdout=subprocess.PIPE )
        output, errors = result.communicate()
#######
os.system(command)
#######
os.popen(command)

还有一些人。 没有错误输出也没有异常...... 有人可以帮帮我吗?

0 个答案:

没有答案