posts-powershell

Finding Minimum and Maximum Values

All PowerShell Versions To find the smallest and largest item in a range of numbers, use Measure-Object: $list = 1,4,3,1,3,12,990 $result = $list | Measure-Object...

  • Written By: ps1
  • Last Updated: April 18, 2025
  • 1 minute read