PowerShell/Scripts/check-week.ps1

23 lines
511 B
PowerShell
Raw Normal View History

2021-12-11 17:44:30 +01:00
<#
.SYNOPSIS
Determines the week number
.DESCRIPTION
2022-01-29 12:47:46 +01:00
This PowerShell script determines and speaks the current week number by text-to-speech (TTS).
2021-12-11 17:44:30 +01:00
.EXAMPLE
PS> ./check-week
It's week #4.
.LINK
https://github.com/fleschutz/PowerShell
2022-09-06 21:42:04 +02:00
.NOTES
Author: Markus Fleschutz | License: CC0
2021-12-11 17:44:30 +01:00
#>
try {
$WeekNo = (get-date -UFormat %V)
& "$PSScriptRoot/give-reply.ps1" "It's week #$WeekNo."
exit 0 # success
} catch {
2022-04-13 12:06:32 +02:00
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2021-12-11 17:44:30 +01:00
exit 1
}