2021-12-08 12:50:10 +01:00
|
|
|
|
<#
|
|
|
|
|
.SYNOPSIS
|
|
|
|
|
Checks the time until Independence Day
|
|
|
|
|
.DESCRIPTION
|
2022-01-29 12:47:46 +01:00
|
|
|
|
This PowerShell script checks the time until Indepence Day and replies by text-to-speech (TTS).
|
2021-12-08 12:50:10 +01:00
|
|
|
|
.EXAMPLE
|
|
|
|
|
PS> ./check-independence-day
|
|
|
|
|
.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 12:50:10 +01:00
|
|
|
|
#>
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
$Now = [DateTime]::Now
|
|
|
|
|
$IndependenceDay = [Datetime]("07/04/" + $Now.Year)
|
|
|
|
|
if ($Now -lt $IndependenceDay) {
|
|
|
|
|
$Diff = $IndependenceDay – $Now
|
2021-12-08 13:06:00 +01:00
|
|
|
|
& "$PSScriptRoot/give-reply.ps1" "Independence Day on July 4th is in $($Diff.Days) days."
|
2021-12-08 12:50:10 +01:00
|
|
|
|
} else {
|
|
|
|
|
$Diff = $Now - $IndependenceDay
|
2021-12-08 13:06:00 +01:00
|
|
|
|
& "$PSScriptRoot/give-reply.ps1" "Independence Day on July 4th was $($Diff.Days) days ago."
|
2021-12-08 12:50:10 +01:00
|
|
|
|
}
|
|
|
|
|
exit 0 # success
|
|
|
|
|
} catch {
|
2022-04-13 12:06:32 +02:00
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
2021-12-08 12:50:10 +01:00
|
|
|
|
exit 1
|
|
|
|
|
}
|