mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 09:04:18 +01:00
23 lines
471 B
PowerShell
Executable File
23 lines
471 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
Determines the time zone
|
|
.DESCRIPTION
|
|
This PowerShell script determines and returns the current time zone.
|
|
.EXAMPLE
|
|
PS> ./check-time-zone
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
.NOTES
|
|
Author: Markus Fleschutz / License: CC0
|
|
#>
|
|
|
|
try {
|
|
$TimeZone = (Get-Timezone)
|
|
|
|
& "$PSScriptRoot/give-reply.ps1" "It's $($TimeZone.DisplayName)"
|
|
exit 0 # success
|
|
} catch {
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
}
|