为大学做这件事,但坚持并希望有人可以提供帮助,
我需要使用powershell命令来显示CPU时间大于10秒的系统上正在运行的进程,然后显示
到目前为止,我收到了这段代码:
Get-Process | Where-Object { $.cpu -gt 10} | Format-Table -Autosize
如何将其整理为仅显示流程Name
,CPU Time
结果和ID
?
答案 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-Table
在Select-Object
之前过滤属性,或者为Format-Table
提供要显示的属性:
... | ft -auto Name,CPU,PID