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
广告