跳转至

PowerShell 获取命令/脚本执行时长

约 46 个字 13 行代码 预计阅读时间不到 1 分钟

命令

Measure-Command -Expression {命令}
Measure-Command -Expression {powershell 脚本文件路径}

效果

执行完后返回时长数据,如:

Days              : 0
Hours             : 5
Minutes           : 3
Seconds           : 16
Milliseconds      : 706
Ticks             : 181967067994
TotalDays         : 0.210610032400463
TotalHours        : 5.05464077761111
TotalMinutes      : 303.278446656667
TotalSeconds      : 18196.7067994
TotalMilliseconds : 18196706.7994

来源

Powershell计算脚本运行的时间_weixin_33827590的博客-CSDN博客