Added tool function to get Unix Time

This commit is contained in:
Lord Hepipud 2019-09-28 21:47:44 +02:00
parent 13a54bd117
commit 460beb2d4f

View file

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