icinga-powershell-framework/lib/core/tools/Get-IcingaUnixTime.psm1

7 lines
140 B
PowerShell
Raw Normal View History

2019-09-28 15:47:44 -04:00
function Get-IcingaUnixTime()
{
2019-10-30 12:57:36 -04:00
return [int][double]::Parse(
(Get-Date -UFormat %s -Date (Get-Date).ToUniversalTime())
);
2019-09-28 15:47:44 -04:00
}