Files
DevOps/Powershell/Speech/list_voices.ps1
2025-09-13 20:36:34 +02:00

3 lines
158 B
PowerShell

Add-Type -AssemblyName System.speech
$speak = New-Object System.Speech.Synthesis.SpeechSynthesizer
$speak.GetInstalledVoices()|ForEach-Object { $_.VoiceInfo }