Skip to content

Instantly share code, notes, and snippets.

@chrisbrownie
Last active December 29, 2016 21:41
Show Gist options
  • Save chrisbrownie/854d957bea3b33b5c4aa to your computer and use it in GitHub Desktop.
Save chrisbrownie/854d957bea3b33b5c4aa to your computer and use it in GitHub Desktop.
PowerShell Text To Speech
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