PowerShell/Scripts/check-independence-day.ps1

29 lines
830 B
PowerShell
Raw Normal View History

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
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 {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}