2024-10-01 15:24:16 +02:00
|
|
|
|
<#
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.SYNOPSIS
|
2021-09-24 17:19:49 +02:00
|
|
|
|
Sets a timer for a countdown
|
2021-10-04 21:29:23 +02:00
|
|
|
|
.DESCRIPTION
|
2022-01-30 10:49:30 +01:00
|
|
|
|
This PowerShell script sets a timer for a countdown.
|
2021-10-16 16:50:10 +02:00
|
|
|
|
.PARAMETER Seconds
|
|
|
|
|
Specifies the number of seconds
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.EXAMPLE
|
2021-09-24 17:19:49 +02:00
|
|
|
|
PS> ./set-timer 60
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
2022-01-30 10:49:30 +01:00
|
|
|
|
.NOTES
|
2022-09-06 21:42:04 +02:00
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
2020-12-29 15:14:21 +01:00
|
|
|
|
#>
|
2020-12-18 14:15:08 +01:00
|
|
|
|
|
2021-01-02 11:08:59 +01:00
|
|
|
|
param([int]$Seconds = 0)
|
2020-12-25 11:45:59 +01:00
|
|
|
|
|
2021-02-18 20:17:55 +01:00
|
|
|
|
try {
|
2021-07-15 15:51:22 +02:00
|
|
|
|
if ($Seconds -eq 0 ) { [int]$Seconds = read-host "Enter number of seconds" }
|
|
|
|
|
|
2020-12-18 14:15:08 +01:00
|
|
|
|
for ($i = $Seconds; $i -gt 0; $i--) {
|
2023-03-01 10:52:37 +01:00
|
|
|
|
Clear-Host
|
2020-12-28 11:17:04 +01:00
|
|
|
|
./write-big "T-$i seconds"
|
2023-03-01 10:52:37 +01:00
|
|
|
|
Start-Sleep -seconds 1
|
2020-12-18 14:15:08 +01:00
|
|
|
|
}
|
2021-08-24 20:46:03 +02:00
|
|
|
|
|
2024-10-01 13:37:53 +02:00
|
|
|
|
"✅ $Seconds seconds countdown finished"
|
2021-09-27 10:09:45 +02:00
|
|
|
|
exit 0 # success
|
2020-12-18 14:15:08 +01:00
|
|
|
|
} catch {
|
2022-04-13 12:06:32 +02:00
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
2020-12-18 14:15:08 +01:00
|
|
|
|
exit 1
|
|
|
|
|
}
|