PowerShell/Scripts/list-voices.ps1
2021-08-03 15:53:57 +02:00

29 lines
604 B
PowerShell

<#
.SYNOPSIS
list-voices.ps1
.DESCRIPTION
Lists the installed text-to-speech (TTS) voices
.EXAMPLE
PS> .\list-voices.ps1
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz
License: CC0
#>
#requires -Version 2.0
try {
add-type -AssemblyName System.Speech
$speak = New-Object System.Speech.Synthesis.SpeechSynthesizer
$speak.GetInstalledVoices() |
Select-Object -ExpandProperty VoiceInfo |
Select-Object -Property Name, Culture, Gender, Age
exit 0
} catch {
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}