2024-10-01 15:11:03 +02:00
|
|
|
|
<#
|
2021-12-08 13:06:00 +01:00
|
|
|
|
.SYNOPSIS
|
|
|
|
|
Checks the time until Easter Sunday
|
|
|
|
|
.DESCRIPTION
|
2022-01-29 12:47:46 +01:00
|
|
|
|
This PowerShell script checks the time until Easter Sunday and replies by text-to-speech (TTS).
|
2021-12-08 13:06:00 +01:00
|
|
|
|
.EXAMPLE
|
|
|
|
|
PS> ./check-easter-sunday
|
|
|
|
|
.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-08 13:06:00 +01:00
|
|
|
|
#>
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
$Now = [DateTime]::Now
|
|
|
|
|
$Easter = [Datetime]("04/17/2022")
|
|
|
|
|
if ($Now -lt $Easter) {
|
|
|
|
|
$Diff = $Easter – $Now
|
2022-11-18 16:54:04 +01:00
|
|
|
|
& "$PSScriptRoot/speak-english.ps1" "Easter Sunday on April 17 is in $($Diff.Days) days."
|
2021-12-08 13:06:00 +01:00
|
|
|
|
} else {
|
|
|
|
|
$Diff = $Now - $Easter
|
2022-11-18 16:54:04 +01:00
|
|
|
|
& "$PSScriptRoot/speak-english.ps1" "Easter Sunday on April 17 was $($Diff.Days) days ago."
|
2021-12-08 13:06:00 +01:00
|
|
|
|
}
|
|
|
|
|
exit 0 # success
|
|
|
|
|
} catch {
|
2022-04-13 12:06:32 +02:00
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
2021-12-08 13:06:00 +01:00
|
|
|
|
exit 1
|
|
|
|
|
}
|