mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-21 07:10:15 -05:00
18 lines
323 B
PowerShell
18 lines
323 B
PowerShell
Import-IcingaLib core\tools;
|
|
|
|
function ConvertFrom-TimeSpan()
|
|
{
|
|
param(
|
|
$Seconds
|
|
);
|
|
|
|
$TimeSpan = [TimeSpan]::FromSeconds($Seconds);
|
|
|
|
return [string]::Format(
|
|
'{0}d {1}h {2}m {3}s',
|
|
$TimeSpan.Days,
|
|
$TimeSpan.Hours,
|
|
$TimeSpan.Minutes,
|
|
$TimeSpan.Seconds
|
|
);
|
|
}
|