Fixed typo

This commit is contained in:
Markus Fleschutz 2020-12-31 10:14:10 +00:00
parent 384002f9ec
commit 38407cf381

View File

@ -10,10 +10,11 @@ try {
$Voice = new-object -ComObject SAPI.SPVoice
$Result = $Voice.Speak("This is the default voice")
$Voice.rate = 10
$Result = $Voice.Speak("Let's speak fast")
$Voice.rate = 8
$Result = $Voice.Speak("Let's speak very, very fast")
$Voice.rate = -10
$Result = $Voice.Speak("Let's speak slow")
$Result = $Voice.Speak("Let's speak very, very slow")
$Voice.rate = 0
$PrevVolume = $Voice.Volume
$Voice.volume = 100