icinga-powershell-framework/lib/core/tools/Get-IcingaUnixTime.psm1
2019-10-30 17:57:36 +01:00

6 lines
140 B
PowerShell

function Get-IcingaUnixTime()
{
return [int][double]::Parse(
(Get-Date -UFormat %s -Date (Get-Date).ToUniversalTime())
);
}