如何获取IRunningTask(Task Scheduler 2.0库)的PID

发布于 2024-10-08 22:05:47 字数 329 浏览 4 评论 0原文

我使用 IRegisteredTask.Run() 启动了一个任务并获得了 IRunningTask 对象。

我的目标是使用 SetForegroundWindow 函数将启动任务的主窗口聚焦。

首先我想知道正在运行的任务的PID(进程ID)。

IRunningTask.EnginePID 属性,但它给了我一些 taskeng.exe 进程(任务计划程序引擎)的 PI​​D,这不是我的任务...

如何获取IRunningTask 的 PID?

I started a task using IRegisteredTask.Run() and got IRunningTask object.

My Goal is to focus the main window of started task with SetForegroundWindow function.

First i want to know the PID (Process ID) of the running task.

There is IRunningTask.EnginePID property, but it gives me the PID of some taskeng.exe process (Task Scheduler Engine), this is not my task...

How to get the PID of IRunningTask?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

傾旎 2024-10-15 22:05:47

你是对的。 IRegisteredTask 接口不公开 PID 属性。

如果您确实需要 PID,则可能需要使用 IRegisteredTask 的 .Path 和 .Name 属性并枚举当前正在运行的进程以查找匹配项。当您找到与 IRegisteredTask 具有相同路径和名称的当前正在运行的进程时,您可以检索 PID。它不漂亮,但应该可以解决问题。

You are correct. The IRegisteredTask interface does not expose a PID property.

If you really need the PID, you might need to use the .Path and .Name properties of the IRegisteredTask and enumerate the currently running processes looking for a match. When you locate the currently running process that has the same path and name as your IRegisteredTask, you can then retrieve the PID. It's not pretty, but it should do the trick.

你是年少的欢喜 2024-10-15 22:05:47

不能使用 IRunningTask.InstanceGuid 获取它(然后通过 TaskScheduler.IRegisteredTaskCollection)吗?

--为了完整性而进行了编辑--

由于您的最终目标是获取任务本身,因此您可以通过使用引擎任务集合中的唯一 GUID 来实现这一目标。

Can't you get it using IRunningTask.InstanceGuid (and then go through TaskScheduler.IRegisteredTaskCollection)?

--edited for completeness--

Since your final goal is to get the task itself, you can do that by using the unique GUID inside the engine's task collection.

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