You are here:

WindowsManagement.com > PowerShell > PowerShell 1.0 > Measure-Command
ActiveXperts Network Monitor 2019 proactively manages network servers, devices, databases and more.

Measure-Command - PowerShell 1.0

Microsoft Windows PowerShell is a command-line shell and scripting tool based on the Microsoft .NET Framework. It is designed for system administrators, engineers and developers to control and automate the administration of Windows and applications.

More than hundred command-line tools (so called "cmdlets") can be used to perform system administration tasks and Windows Management Instrumentation (WMI). These cmdlets are easy to use, with standard naming conventions and common parameters, and standard tools for piping, sorting, filtering, and formatting data and objects.

Measure-Command


Description
Back up your Hyper-V VMs Easy & Fast. 100% built for Hyper-V. Free for 2 VMs, forever.

Usage


Options
-expression 
       The expression to be timed.
       Enclose the expression in {curly braces}

   -inputObject
       An object that represents an expression.
       A command, expression or variable that contains the object(s).

   CommonParameters:
       -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutVariable.

Example(s)
Measures the time it takes to run a "get-eventlog" command:

PS C:\>Measure-Command { get-eventlog }

Compare the performance of -filter and -include:

PS C:\>measure-command {get-childitem c:\windows -include *.txt -recurse}
PS C:\>measure-command {get-childitem c:\windows -filter "*.txt" -recurse}