Following is the way to make powershell to speak.

Add-Type -AssemblyName System.Speech
$synthesizer = New-Object -TypeName System.Speech.Synthesis.SpeechSynthesizer
$synthesizer.Speak('Hey, I can speak!')

Actually i would like to do opposite. If i speak , can powershell convert it into letters.

If i say in my sound recorder "Hey, I can speak", will it convert into text?

If possible please guide me how to achieve it?

link|improve this question

80% accept rate
Not sure if it can listen, but thanks for showing how it can speak, upvoted – user978511 Feb 20 at 13:30
Note that those are two quit different problems. – Joey Feb 20 at 13:43
feedback

3 Answers

up vote 3 down vote accepted

Looks like you can with System.Speech.Recognition. Here is even example usage written in PowerShell:

http://huddledmasses.org/control-your-pc-with-your-voice-and-powershell/

link|improve this answer
feedback

Speech recognition is still experimental a technology. There are some .Net framework resources, even with an example. Don't expect to create a PowerShiri anytime soon, though.

link|improve this answer
feedback

The technology is a little past "experimental", but it's far from reliable.

Exchange does this now with the "Voicemail Preview" option of UM. The results can vary from pretty good to hilarious, depending on the speaker.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.