• Scientific Computing | SciVision

  • Blog
  • Tags
  • Categories

Windows PowerShell measure time to execute

16 October, 2021

The Unix time command measures the elapsed time between the start and end of a command. For Windows PowerShell, command execution time is measured by Measure-Command.

Measure-Command { ls }

Measure-Command { ping localhost }
  • shell
  • powershell