Added tool function to get Unix Time

This commit is contained in:
Lord Hepipud 2019-09-28 21:47:44 +02:00
parent 84e36475b4
commit 2b5a9536ad

View file

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