mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-15 20:44:17 +01:00
24 lines
525 B
PowerShell
Executable File
24 lines
525 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)
|
|
$Reply = "It's $($TimeZone.DisplayName)"
|
|
"✔️ $Reply"
|
|
& "$PSScriptRoot/speak-english.ps1" "$Reply"
|
|
exit 0 # success
|
|
} catch {
|
|
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
|
|
exit 1
|
|
}
|