我需要以编程方式从 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。
有人知道如何启动任务管理器吗?
我不是说打开选择窗口,我想立即打开任务管理器。