Turn on your speakers, open up PowerShell and type this:
(new-object -com SAPI.SpVoice).speak(“Welcome to the SP2010 Blog”)
Amazing, right!?
Now, this really has zero to do with SharePoint – unless you are brave enough to script this in with the results of a ULS log! : )
However, it’s still interesting to know just how powerful POWERShell is.
03/23/2010 at 5:37 am
THAT was hands down the coolest thing!
Generally if it’s accessible programatically in Windows? Powershell can do it.
I’m actually going to add that feature to the Powershell Christmas tree for next year!
🙂
Sweet!
Sean
The Energized Tech
03/23/2010 at 6:09 am
Adam
Share and enjoy.
Your Commandlet now as Function called “Out-Voice”
Usage Out-Voice Text
function global:out-voice ($words) {
(new-object -com SAPI.SpVoice).speak($words)
}
Cheers!
Sean
The Energized Tech
03/23/2010 at 6:33 am
Sean,
That is very cool! Thank you for adding this!
– Adam
06/15/2011 at 7:11 am
Hi Chaps,
I take it I need to have SharePoint 2010 to actually experience thsi, right? Cool though…
06/15/2011 at 7:43 am
No, this is native PowerShell 2.0 functionality. This does not require SharePoint 2010.