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.html