mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-08-09 05:04:39 +02:00
Add check-timezone.ps1
This commit is contained in:
23
Scripts/check-timezone.ps1
Executable file
23
Scripts/check-timezone.ps1
Executable 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
|
||||
}
|
Reference in New Issue
Block a user