Added tool function to get Unix Time

This commit is contained in:
Lord Hepipud 2019-09-28 21:47:44 +02:00
parent cde7748368
commit 64a5054108

View file

@ -0,0 +1,4 @@
function Get-IcingaUnixTime()
{
return [int][double]::Parse((Get-Date -UFormat %s))
}