PowerShell/scripts/check-day.ps1

24 lines
599 B
PowerShell
Raw Normal View History

2024-10-01 15:11:03 +02:00
<#
2021-12-11 17:48:35 +01:00
.SYNOPSIS
Determines the current day
.DESCRIPTION
2022-01-29 12:47:46 +01:00
This PowerShell script determines and speaks the current day by text-to-speech (TTS).
2021-12-11 17:48:35 +01:00
.EXAMPLE
PS> ./check-day
2024-10-01 13:37:53 +02:00
It's Sunday.
2021-12-11 17:48:35 +01:00
.LINK
https://github.com/fleschutz/PowerShell
2022-01-29 12:47:46 +01:00
.NOTES
2022-09-06 21:42:04 +02:00
Author: Markus Fleschutz | License: CC0
2021-12-11 17:48:35 +01:00
#>
try {
[system.threading.thread]::currentthread.currentculture=[system.globalization.cultureinfo]"en-US"
$Weekday = (Get-Date -format "dddd")
2022-11-18 16:54:04 +01:00
& "$PSScriptRoot/speak-english.ps1" "It's $Weekday."
2021-12-11 17:48:35 +01:00
exit 0 # success
} catch {
2022-04-13 12:06:32 +02:00
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2021-12-11 17:48:35 +01:00
exit 1
}