PowerShell/Scripts/check-time-zone.ps1

24 lines
684 B
PowerShell
Raw Normal View History

2021-12-01 12:05:53 +01:00
<#
.SYNOPSIS
Checks the time zone setting
2021-12-01 12:05:53 +01:00
.DESCRIPTION
This PowerShell script determines and prints the current time zone.
2021-12-01 12:05:53 +01:00
.EXAMPLE
2021-12-01 12:23:03 +01:00
PS> ./check-time-zone
2021-12-01 12:05:53 +01:00
.LINK
https://github.com/fleschutz/PowerShell
2022-01-29 12:47:46 +01:00
.NOTES
2022-09-06 21:42:04 +02:00
Author: Markus Fleschutz | License: CC0
2021-12-01 12:05:53 +01:00
#>
try {
[system.threading.thread]::currentThread.currentCulture = [system.globalization.cultureInfo]"en-US"
$Time = $((Get-Date).ToShortTimeString())
$TZ = (Get-Timezone)
2022-10-17 09:35:57 +02:00
if ($TZ.SupportsDaylightSavingTime) { $DST=" & +01:00:00 DST" } else { $DST="" }
2022-10-17 19:58:19 +02:00
"$Time in $($TZ.Id) (UTC+$($TZ.BaseUtcOffset)$DST)."
2021-12-01 12:05:53 +01:00
exit 0 # success
} catch {
2022-04-13 12:06:32 +02:00
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2021-12-01 12:05:53 +01:00
exit 1
}