1 2 3 4 5 6 7 8 9 |
Add-Type -AssemblyName System.Speech "hola","casa" | %{ $synthesizer = New-Object -TypeName System.Speech.Synthesis.SpeechSynthesizer $_ #Establece la velocidad de habla de la SpeechSynthesizer $synthesizer.Rate=0 $synthesizer.Speak($_) } |