PowerShell/Scripts/give-reply.ps1

38 lines
861 B
PowerShell
Raw Normal View History

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:
2021-12-06 17:05:28 +01:00
"$text"
2021-12-06 15:46:02 +01:00
2021-12-06 17:00:49 +01:00
# speak by text-to-speech (TTS):
if (!$IsLinux) {
$TTSVoice = New-Object -ComObject SAPI.SPVoice
foreach ($Voice in $TTSVoice.GetVoices()) {
if ($Voice.GetDescription() -like "*- English*") { $TTSVoice.Voice = $Voice }
2021-12-06 15:46:02 +01:00
}
[void]$TTSVoice.Speak($text)
2021-12-06 15:46:02 +01:00
}
2021-12-06 17:00:49 +01:00
# remember last reply:
"$text" > "$env:TEMP/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
}