diff --git a/speak.ps1 b/speak.ps1 new file mode 100644 index 00000000..c57f3c59 --- /dev/null +++ b/speak.ps1 @@ -0,0 +1,11 @@ +# PowerShell Script for Text-To-Speech (TTS) +# ------------------------------------------ +# Author: Markus Fleschutz +# Source: github.com/fleschutz/PowerShell +# License: CC0 + +$Text = "Hello World!" + +$voice = New-Object ComObject SAPI.SPVoice +$voice.Speak($Text); +exit 0