WS 2008 R2通过id获取进程

我在事件查看器中收到以下消息:

进程ID为“10088”的服务应用程序池“mypoolapp”的工作进程已经请求了一个回收,因为工作进程已经达到了允许的处理时间限制。

我从PowerShell获得这个回报:

PS C:\> Get-Process -Id 10088 Get-Process : Cannot find a process with the process identifier 10088. At line:1 char:12 + Get-Process <<<< -Id 10088 + CategoryInfo : ObjectNotFound: (10088:Int32) [Get-Process], ProcessCommandException + FullyQualifiedErrorId : NoProcessFoundForGivenId,Microsoft.PowerShell.Commands.GetProcessCommand 

如何找出谁是过程/程序与ID 10088?

根据官方的文件,你做的没错,但看起来像,当你试图find过程,它完成它的工作,你会收到错误。