0

我需要以编程方式从 Windows 8 中启动任务管理器。

在 Windows 8 之前,我只是使用了类似的东西:

Dim sPath$
Dim fso As New FileSystemObject
sPath = fso.GetSpecialFolder(1)
sPath = sPath & "\taskmgr.exe"
Shell(sPath)

实际上编程语言并不重要。

事情似乎是在 Windows 8 系统上不再有 taskmgr.exe。

有人知道如何启动任务管理器吗?

我不是说打开选择窗口,我想立即打开任务管理器。

4

2 回答 2

1

在 Windows 8 中,任务管理器仍然存在。例如,请参阅这篇关于 Windows 8 任务管理器的文章。

于 2013-04-14T07:54:43.767 回答
0

您可能可以分析 Shell() 函数调用的返回码。它可以帮助您找到确切的问题。

于 2013-04-14T08:08:58.867 回答