2021-12-01 12:05:53 +01:00
|
|
|
|
<#
|
|
|
|
|
.SYNOPSIS
|
|
|
|
|
Determines the time zone
|
|
|
|
|
.DESCRIPTION
|
2022-01-29 12:47:46 +01:00
|
|
|
|
This PowerShell script determines and returns 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
|
|
|
|
|
Author: Markus Fleschutz / License: CC0
|
2021-12-01 12:05:53 +01:00
|
|
|
|
#>
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
$TimeZone = (Get-Timezone)
|
2021-12-06 17:00:49 +01:00
|
|
|
|
|
|
|
|
|
& "$PSScriptRoot/give-reply.ps1" "It's $($TimeZone.DisplayName)"
|
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
|
|
|
|
|
}
|