PowerShell/Scripts/check-time-zone.ps1
2021-12-06 17:00:49 +01:00

23 lines
487 B
PowerShell
Executable File

<#
.SYNOPSIS
Determines the time zone
.DESCRIPTION
This script determines and returns the current time zone.
.EXAMPLE
PS> ./check-time-zone
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
try {
$TimeZone = (Get-Timezone)
& "$PSScriptRoot/give-reply.ps1" "It's $($TimeZone.DisplayName)"
exit 0 # success
} catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}