Powershell: Difference between revisions
Jump to navigation
Jump to search
(→Tips) |
|||
Line 1: | Line 1: | ||
== Links == |
|||
* [https://learnxinyminutes.com/docs/powershell/ Learn powershell in Y minutes] |
|||
== Tips == |
== Tips == |
||
=== Measure execution time of a command === |
=== Measure execution time of a command === |
Revision as of 10:29, 22 February 2022
Links
Tips
Measure execution time of a command
Measure-Command { dir }
Measure-Command { dir | Out-default} # To get output
Measure-Command { choco list }