Powershell - Cmdlet comando-misura
Cmdlet
Measure-Command cmdlet viene utilizzato per misurare il tempo impiegato dallo script o dal comando.
In questo esempio, vediamo il cmdlet Measure-Command in azione.
Esempio
In questo esempio, mostreremo come misurare il tempo del comando Get-EventLog per registrare un evento nel registro eventi di PowerShell.
Measure-Command { Get-EventLog "Windows PowerShell" }
Produzione
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