$MeasureOutbound = $Outbound | Measure-Object -Property Value -Maximum $MaxOutbound = $MeasureOutbound.Maximum * 8 # Multiply to bits/sec $Saturated = $False # Speed property is Int, e.g. 10000000000 If (($MaxInbound -Gt (0.90 * $_.Speed)) -Or ($MaxOutbound -Gt (0.90 * ...