A while ago I saw something asking about calculating standard deviations for a set of numbers in PowerShell. You can calculate the the mean (average) of a set of numbers using Measure-Object
$numbers = 1..10
$mean = $numbers | Measure-Object… Read the full text.