Speak

November 5th, 2009 by riro Leave a reply »

An easy way to get your computer to speak is the object SAPI.SpVoice

A small Powershell-file:

$spv = new-object -com SAPI.SpVoice
$spv.speak($args)
$spv = $null

Then call it like “.\speak.ps1 Say something”

Leave a Reply