- PowerShell 教程
- PowerShell - 主页
- PowerShell - 概览
- PowerShell - 环境设置
- PowerShell - Cmdlet
- PowerShell - 文件和文件夹
- PowerShell - 日期和计时器
- PowerShell - 文件 I/O
- PowerShell - 高级 Cmdlet
- PowerShell - 脚本
- PowerShell - 特殊变量
- PowerShell - 运算符
- PowerShell - 循环
- PowerShell - 条件
- PowerShell - 数组
- PowerShell - 哈希表
- PowerShell - 正则表达式
- PowerShell - 撇号
- PowerShell - 括号
- PowerShell - 别名
- PowerShell 实用资源
- PowerShell - 速查指南
- PowerShell - 实用资源
- PowerShell - 讨论
PowerShell - Measure-Command Cmdlet
Cmdlet
Measure-Command Cmdlet 用于测量脚本或命令所用的时间。
在这些示例中,我们将看到 Measure-Command Cmdlet 的实际应用。
示例
在此示例中,我们将展示如何测量 Get-EventLog 命令在 PowerShell 事件日志中记录事件所用的时间。
Measure-Command { Get-EventLog "Windows PowerShell" }
输出
Days : 0 Hours : 0 Minutes : 0 Seconds : 0 Milliseconds : 50 Ticks : 506776 TotalDays : 5.86546296296296E-07 TotalHours : 1.40771111111111E-05 TotalMinutes : 0.000844626666666667 TotalSeconds : 0.0506776 TotalMilliseconds : 50.6776
powershell_advanced_cmdlets.htm
广告