Powershell命令以cpu时间10秒显示进程

时间:2018-02-09 16:14:12

标签: powershell

为大学做这件事,但坚持并希望有人可以提供帮助,

我需要使用powershell命令来显示CPU时间大于10秒的系统上正在运行的进程,然后显示

  1. 名称
  2. CPU时间
  3. ID
  4. 到目前为止,我收到了这段代码:

    Get-Process | Where-Object { $.cpu -gt 10} | Format-Table -Autosize 
    

    如何将其整理为仅显示流程NameCPU Time结果和ID

2 个答案:

答案 0 :(得分:1)

这是你要找的东西吗?

var itemRouter = express.Router();

app.use('/items', itemRouter);

itemRouter.route('/').get(function (req, res) {
  res.render('items');
});

itemRouter.route('/single').get(function (req, res) {
  res.render('singleItem');
});

答案 1 :(得分:0)

您可以使用Format-TableSelect-Object之前过滤属性,或者为Format-Table提供要显示的属性:

... | ft -auto Name,CPU,PID