2021-12-06 15:46:02 +01:00
|
|
|
|
<#
|
|
|
|
|
.SYNOPSIS
|
|
|
|
|
Gives a reply
|
|
|
|
|
.DESCRIPTION
|
2021-12-06 17:00:49 +01:00
|
|
|
|
This script gives a reply in English on the console and by text-to-speech (TTS).
|
2021-12-06 15:46:02 +01:00
|
|
|
|
.PARAMETER text
|
|
|
|
|
Specifies the text to speak
|
|
|
|
|
.EXAMPLE
|
|
|
|
|
PS> ./give-reply "Hello World"
|
|
|
|
|
.NOTES
|
|
|
|
|
Author: Markus Fleschutz · License: CC0
|
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
|
#>
|
|
|
|
|
|
|
|
|
|
param([string]$text = "")
|
|
|
|
|
|
|
|
|
|
try {
|
2021-12-06 17:00:49 +01:00
|
|
|
|
# print reply on the console:
|
|
|
|
|
"→ $text"
|
2021-12-06 15:46:02 +01:00
|
|
|
|
|
2021-12-06 17:00:49 +01:00
|
|
|
|
# speak by text-to-speech (TTS):
|
2021-12-06 15:46:02 +01:00
|
|
|
|
$TTSVoice = New-Object -ComObject SAPI.SPVoice
|
|
|
|
|
foreach ($Voice in $TTSVoice.GetVoices()) {
|
|
|
|
|
if ($Voice.GetDescription() -like "*- English*") {
|
|
|
|
|
$TTSVoice.Voice = $Voice
|
|
|
|
|
[void]$TTSVoice.Speak($text)
|
2021-12-06 17:00:49 +01:00
|
|
|
|
break
|
2021-12-06 15:46:02 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2021-12-06 17:00:49 +01:00
|
|
|
|
|
|
|
|
|
# remember last reply:
|
|
|
|
|
"$text" > "$HOME/.last_reply.txt"
|
2021-12-06 15:46:02 +01:00
|
|
|
|
exit 0 # success
|
|
|
|
|
} catch {
|
|
|
|
|
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
|
|
|
|
|
exit 1
|
|
|
|
|
}
|