PowerShell/Scripts/check-time-zone.ps1

23 lines
487 B
PowerShell
Raw Normal View History

2021-12-01 12:05:53 +01:00
<#
.SYNOPSIS
Determines the time zone
.DESCRIPTION
This script determines and returns the current time zone.
.EXAMPLE
2021-12-01 12:23:03 +01:00
PS> ./check-time-zone
2021-12-01 12:05:53 +01:00
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
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 {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}