function ConvertSecondsTo-TimeSpan { param ( $insec ) $TimeSpan = [TimeSpan]::fromseconds($insec) "{0:dd' day 'hh\:mm\:ss}" -f $TimeSpan }