Skip to content

Instantly share code, notes, and snippets.

@MattiasFestin
Last active February 26, 2020 09:57
Show Gist options
  • Save MattiasFestin/69232002c111b64303d42b4169132389 to your computer and use it in GitHub Desktop.
Save MattiasFestin/69232002c111b64303d42b4169132389 to your computer and use it in GitHub Desktop.
Add-Type -AssemblyName System.Speech; $ss = New-Object -TypeName System.Speech.Synthesis.SpeechSynthesizer; $ss.Speak('Do you want some up dog?'); $ss.SelectVoice('Microsoft Zira Desktop') ; $ss.Speak('What is up dog?'); $ss.SelectVoice('Microsoft David Desktop'); $ss.Speak('Nothing much, how about you'); $ss.SelectVoice('Microsoft Zira Desktop') ; $ss.Speak('Fuck you Dave!');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment