Last active
December 29, 2016 21:41
-
-
Save chrisbrownie/854d957bea3b33b5c4aa to your computer and use it in GitHub Desktop.
PowerShell Text To Speech
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add-Type -AssemblyName System.speech | |
$ss = New-Object System.Speech.Synthesis.SpeechSynthesizer | |
$ss.Rate = -3 | |
$ss.Speak("Hello I am a computer") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment