PS-Commands/Scripts/ConvertSecondsTo-TimeSpan.psm1
2023-08-17 13:45:36 +03:00

7 lines
No EOL
168 B
PowerShell

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