From dcd833acefaa1966f22570fe64d2d4067ca5cf11 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Sun, 16 Oct 2022 11:26:08 +0200 Subject: [PATCH] Update check-time-zone.ps1 --- Scripts/check-time-zone.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Scripts/check-time-zone.ps1 b/Scripts/check-time-zone.ps1 index ca21ca70..ee42d729 100755 --- a/Scripts/check-time-zone.ps1 +++ b/Scripts/check-time-zone.ps1 @@ -15,8 +15,8 @@ try { [system.threading.thread]::currentThread.currentCulture = [system.globalization.cultureInfo]"en-US" $Time = $((Get-Date).ToShortTimeString()) $TZ = (Get-Timezone) - if ($TZ.SupportsDaylightSavingTime) { $DST="+01DST" } else { $DST="" } - "✅ $Time $($TZ.Id) (UTC+$($TZ.BaseUtcOffset) $DST)." + if ($TZ.SupportsDaylightSavingTime) { $DST=", +01:00 DST" } else { $DST="" } + "✅ Time zone is $($TZ.Id) ($Time, UTC+$($TZ.BaseUtcOffset)$DST)." exit 0 # success } catch { "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"