cmdと言いつつpowershellを使う。
>powershell -C Measure-Command {echo 1}
Days : 0
Hours : 0
Minutes : 0
Seconds : 0
Milliseconds : 0
Ticks : 9193
TotalDays : 1.06400462962963E-08
TotalHours : 2.55361111111111E-07
TotalMinutes : 1.53216666666667E-05
TotalSeconds : 0.0009193
TotalMilliseconds : 0.9193
秒だけ。
>powershell -C (Measure-Command {test\main_test.bat}).TotalSeconds
8.6298945
psスクリプトの場合はExecutionPolicy
の指定が必要なことがある。
>powershell -ExecutionPolicy RemoteSigned -C (Measure-Command {test\test.ps1}).TotalSeconds
ExecutionPolicyに関する参考記事
http://qiita.com/alchemist/items/e6706cd425f8f5e5032e