Private/ADLookups/_FormatTimeSpan.ps1

function _FormatTimeSpan {
    # Part of _GetUptime
    process {
        "{0:00} d {1:00} h {2:00} m {3:00} s" -f $_.Days, $_.Hours, $_.Minutes, $_.Seconds
    }
}