mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-21 01:18:18 +02:00
Fixed typo
This commit is contained in:
parent
384002f9ec
commit
38407cf381
@ -10,10 +10,11 @@ try {
|
|||||||
$Voice = new-object -ComObject SAPI.SPVoice
|
$Voice = new-object -ComObject SAPI.SPVoice
|
||||||
$Result = $Voice.Speak("This is the default voice")
|
$Result = $Voice.Speak("This is the default voice")
|
||||||
|
|
||||||
$Voice.rate = 10
|
$Voice.rate = 8
|
||||||
$Result = $Voice.Speak("Let's speak fast")
|
$Result = $Voice.Speak("Let's speak very, very fast")
|
||||||
$Voice.rate = -10
|
$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
|
$PrevVolume = $Voice.Volume
|
||||||
$Voice.volume = 100
|
$Voice.volume = 100
|
||||||
|
Loading…
Reference in New Issue
Block a user