PowerShell/Scripts/check-new-year.ps1

24 lines
586 B
PowerShell
Raw Normal View History

<#
.SYNOPSIS
Checks the time until New Year
.DESCRIPTION
This script checks the time until New Year and replies by text-to-speech (TTS).
.EXAMPLE
PS> ./check-new-year
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
try {
$Now = [DateTime]::Now
2021-12-08 12:50:10 +01:00
$NewYear = [Datetime]("12/31/" + $Now.Year)
$Diff = $NewYear $Now
2021-12-06 17:00:49 +01:00
& "$PSScriptRoot/give-reply.ps1" "New Year is in $($Diff.Days) days."
exit 0 # success
} catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}