如何在后台运行Python脚本?

发布于 2024-07-17 04:43:47 字数 126 浏览 12 评论 0原文

我有一个脚本每 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

飘落散花 2024-07-24 04:43:48

如果您使用 pythonw.exe 运行控制台脚本,它既不会显示窗口,也不会出现在任务栏中。 例如,我使用以下命令在启动时启动 ntlmaps

C:\BenBlank\Python2.6\pythonw.exe scripts/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:

C:\BenBlank\Python2.6\pythonw.exe scripts/ntlmaps

Be aware, however, that there is no way to interact with the script, nor to terminate it save via the Task Manager.

不顾 2024-07-24 04:43:48

您还有另一个选择:

您可以创建 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.

来日方长 2024-07-24 04:43:48

您可以将其作为服务运行。 请参阅此处

You could run it as a service. See here

可遇━不可求 2024-07-24 04:43:48

在 Linux 上执行 cron; 在 Windows 上安排它 [控制面板 > 计划任务> 添加定时任务]

cron it on linux; schedule it on windows [control panel > scheduled tasks > Add scheduled task]

誰認得朕 2024-07-24 04:43:48

从任何地方运行 python 文件:

步骤 1:

Create Shortcut of Python File.

步骤 2:

Place Shortcut in this location  C:\ProgramData\Microsoft\Windows\Start Menu\Programs

步骤 3:

Now Right Click --> Go to Properties --> Shortcut --> Press any key on keyboard it will take one shortcut key

步骤 4:

Now , Type the Shortcut key which you entered in previous step.

步骤 5:

Check out Output!   :)

To Run python file from any where :

Step 1:

Create Shortcut of Python File.

Step 2:

Place Shortcut in this location  C:\ProgramData\Microsoft\Windows\Start Menu\Programs

Step 3:

Now Right Click --> Go to Properties --> Shortcut --> Press any key on keyboard it will take one shortcut key

Step 4:

Now , Type the Shortcut key which you entered in previous step.

Step 5:

Check out Output!   :)
天冷不及心凉 2024-07-24 04:43:48

在控制面板中查找计划任务。

Look for Schedule Tasks in the control panel.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文