1
0
mirror of https://github.com/fleschutz/PowerShell.git synced 2025-04-05 23:08:44 +02:00

Rename to write-time.ps1

This commit is contained in:
Markus Fleschutz 2022-09-10 14:16:14 +02:00
parent f14196edf8
commit 47c2254882

View File

@ -1,10 +1,10 @@
<#
.SYNOPSIS
Determines the current time
Writes the current time
.DESCRIPTION
This PowerShell script determines and speaks the current time by text-to-speech (TTS).
This PowerShell script determines and writes the current time.
.EXAMPLE
PS> ./check-time
PS> ./write-time
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
@ -12,12 +12,11 @@
#>
try {
[system.threading.thread]::currentThread.currentCulture=[system.globalization.cultureInfo]"en-US"
[system.threading.thread]::currentThread.currentCulture = [system.globalization.cultureInfo]"en-US"
$CurrentTime = $((Get-Date).ToShortTimeString())
& "$PSScriptRoot/give-reply.ps1" "It's $CurrentTime"
"🕒$CurrentTime"
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
}