PowerShell/scripts/check-time-zone.ps1

32 lines
844 B
PowerShell
Raw Normal View History

2023-10-31 12:12:58 +01:00
<#
2021-12-01 12:05:53 +01:00
.SYNOPSIS
Checks the time zone
2021-12-01 12:05:53 +01:00
.DESCRIPTION
2023-05-04 11:18:24 +02:00
This PowerShell script queries the time zone and prints it.
2021-12-01 12:05:53 +01:00
.EXAMPLE
2023-08-06 21:35:36 +02:00
PS> ./check-time-zone.ps1
2023-06-12 10:25:55 +02:00
11:13 AM W. Europe Summer Time (UTC+01:00) Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna (+01:00 DST)
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)
2023-06-12 10:25:55 +02:00
if ($TZ.SupportsDaylightSavingTime) {
$TZName = $TZ.DaylightName
$DST=" (+01:00 DST)"
} else {
$TZName = $TZ.StandardName
$DST=""
}
Write-Host "$Time $TZName $($TZ.DisplayName)$($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
2023-06-05 14:54:15 +02:00
}