PS-Commands/Scripts/ConvertSecondsTo-TimeSpan.psm1

7 lines
168 B
PowerShell
Raw Normal View History

2023-08-17 13:45:36 +03:00
function ConvertSecondsTo-TimeSpan {
param (
$insec
)
$TimeSpan = [TimeSpan]::fromseconds($insec)
"{0:dd' day 'hh\:mm\:ss}" -f $TimeSpan
}