如何在后台运行Python脚本?
我有一个脚本每 5 分钟检查一次 PC 上的某些内容,但我不希望 Python 显示在我的任务托盘上。 我使用 Windows 作为我的操作系统。
有没有办法让Python在后台运行并强制它不显示在我的任务托盘中?
I have a script that checks something on my PC every 5 minutes and I don't want Python to show on my task tray. I use Windows as my operating system.
Is there any way to make Python run in the background and force it to not show in my task tray?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
如果您使用 pythonw.exe 运行控制台脚本,它既不会显示窗口,也不会出现在任务栏中。 例如,我使用以下命令在启动时启动 ntlmaps:
但是请注意,没有办法与脚本交互,也不是通过任务管理器终止它的保存。
If you run a console script using
pythonw.exe
, it will neither display a window nor appear in the task bar. For example, I use the following command to launch ntlmaps on startup:Be aware, however, that there is no way to interact with the script, nor to terminate it save via the Task Manager.
您还有另一个选择:
您可以创建 Python 脚本的快捷方式,然后右键单击该快捷方式 --> 属性--> 快捷方式选项卡
“运行”选项下有一个下拉框,可让您最小化运行命令。
Just another option you have:
You can create a shortcut to your Python script, then
right-click the shortcut --> Properties --> Shortcut tab
There is a drop-down box under the Run option which lets you run the command minimized.
您可以将其作为服务运行。 请参阅此处
You could run it as a service. See here
在 Linux 上执行 cron; 在 Windows 上安排它 [控制面板 > 计划任务> 添加定时任务]
cron it on linux; schedule it on windows [control panel > scheduled tasks > Add scheduled task]
从任何地方运行 python 文件:
步骤 1:
步骤 2:
步骤 3:
步骤 4:
步骤 5:
To Run python file from any where :
Step 1:
Step 2:
Step 3:
Step 4:
Step 5:
在控制面板中查找计划任务。
Look for Schedule Tasks in the control panel.