PowerShell: Get a Cmdlet or Script’s Execution Time

Contributor Icon Contributed by shamanstears Date Icon June 12, 2008  
Tag Icon Tagged: Windows

PowerShell allows you to get the exact execution time it would take to run a cmdlet or script. This is useful if you are working with a small window of time in which to run the script.


1. Open PowerShell

2. To get the execution time, you will use the Measure-Command cmdlet. Here’s an example for getting the execution time for the Get-Process cmdlet:
measure-command {get-process}

3. Once you have executed the measure-command cmdlet, the execution time will be displayed in Days, Hours, Minutes, Seconds, Milliseconds, Ticks, TotalDays, TotalHours, TotalMinutes, TotalSeconds and TotalMilliseconds.

Previous recipe | Next recipe |
 
blog comments powered by Disqus