Add check-timezone.ps1

This commit is contained in:
Markus Fleschutz
2021-12-01 12:05:53 +01:00
parent a959f51ce6
commit 7b1dd66351
2 changed files with 24 additions and 1 deletions

23
Scripts/check-timezone.ps1 Executable file
View File

@ -0,0 +1,23 @@
<#
.SYNOPSIS
Determines the time zone
.DESCRIPTION
This script determines and returns the current time zone.
.EXAMPLE
PS> ./check-timezone
.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
}