如何在Windows 7-10 上识别工作 运行 的背景?

how to identify jobs running background on Windows 7-10?

我想在后台 运行 一个 Python 进程,我在 PowerShell 中使用以下命令。

powershell > PowerShell.exe -windowstyle hidden python my_process.py

但是,我怎么知道它是否在后台 运行ning?任务管理器无法在后台显示名为 python my_process.py 的进程 运行ning,而且我不知道任务管理器上的进程 ID,它只显示一些 pythonpowershell 在后台处理 运行ning。我无法确定哪个进程是我的 Python 进程。

实际上不是编程问题,而是:

在任务管理器的进程页面中,选择查看 > Select 列 并添加命令行列。然后你可以看到每个进程的实际命令行,你应该能够找到你感兴趣的那些。

这是给Windows7的;我知道他们对 Windows 10 的任务管理器进行了一些更改,但目前无法访问 Windows 10 机器。