2021-12-04 17:28:17 +01:00
|
|
|
|
<#
|
|
|
|
|
.SYNOPSIS
|
|
|
|
|
Checks the time until New Year
|
|
|
|
|
.DESCRIPTION
|
2022-01-29 12:47:46 +01:00
|
|
|
|
This PowerShell script checks the time until New Year and replies by text-to-speech (TTS).
|
2021-12-04 17:28:17 +01:00
|
|
|
|
.EXAMPLE
|
|
|
|
|
PS> ./check-new-year
|
|
|
|
|
.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-04 17:28:17 +01:00
|
|
|
|
#>
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
$Now = [DateTime]::Now
|
2021-12-08 12:50:10 +01:00
|
|
|
|
$NewYear = [Datetime]("12/31/" + $Now.Year)
|
2021-12-13 10:52:50 +01:00
|
|
|
|
$Days = ($NewYear – $Now).Days + 1
|
|
|
|
|
if ($Days -gt 1) {
|
2022-11-18 16:54:04 +01:00
|
|
|
|
& "$PSScriptRoot/speak-english.ps1" "New Year is in $Days days."
|
2021-12-13 10:52:50 +01:00
|
|
|
|
} elseif ($Days -eq 1) {
|
2022-11-18 16:54:04 +01:00
|
|
|
|
& "$PSScriptRoot/speak-english.ps1" "New Year is tomorrow."
|
2021-12-13 10:52:50 +01:00
|
|
|
|
}
|
2021-12-04 17:28:17 +01:00
|
|
|
|
exit 0 # success
|
|
|
|
|
} catch {
|
2022-04-13 12:06:32 +02:00
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
2021-12-04 17:28:17 +01:00
|
|
|
|
exit 1
|
|
|
|
|
}
|