PowerShell/Scripts/give-reply.ps1

45 lines
1.0 KiB
PowerShell
Raw Normal View History

2021-12-06 15:46:02 +01:00
<#
.SYNOPSIS
Gives a reply
.DESCRIPTION
2022-01-29 12:47:46 +01:00
This PowerShell 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"
.LINK
https://github.com/fleschutz/PowerShell
2022-01-29 12:47:46 +01:00
.NOTES
Author: Markus Fleschutz / License: CC0
2021-12-06 15:46:02 +01:00
#>
param([string]$text = "")
2021-12-09 16:36:44 +01:00
function GetTempDir {
2021-12-10 11:51:51 +01:00
if ("$env:TEMP" -ne "") { return "$env:TEMP" }
if ("$env:TMP" -ne "") { return "$env:TMP" }
2021-12-09 16:36:44 +01:00
if ($IsLinux) { return "/tmp" }
2021-12-10 11:51:51 +01:00
return "C:\Temp"
2021-12-09 16:36:44 +01:00
}
2021-12-06 15:46:02 +01:00
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:
2021-12-09 16:36:44 +01:00
"$text" > "$(GetTempDir)/last_reply_given.txt"
2021-12-06 15:46:02 +01:00
exit 0 # success
} catch {
2022-04-13 12:06:32 +02:00
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2021-12-06 15:46:02 +01:00
exit 1
}