Add scripts

This commit is contained in:
Alex Kup 2023-08-03 11:24:09 +03:00 committed by GitHub
parent 45b95998ae
commit 8609b6ff17
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 213 additions and 0 deletions

View file

@ -0,0 +1,5 @@
function Get-TImeStamp {
$tz = (Get-TimeZone).BaseUtcOffset.TotalMinutes
$unixtime = (New-TimeSpan -Start (Get-Date "01/01/1970") -End ((Get-Date).AddMinutes(-$tz))).TotalSeconds # -3h UTC
([string]$unixtime -replace "\..+") + "000000000"
}