Skip to content

Instantly share code, notes, and snippets.

@ebith
Created July 31, 2016 12:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ebith/f108bd114148e78133d3d534bed1a438 to your computer and use it in GitHub Desktop.
Save ebith/f108bd114148e78133d3d534bed1a438 to your computer and use it in GitHub Desktop.
say command for Windows
var args = [];
for (var i = 0; i < WScript.Arguments.length; i++) {
args.push(WScript.Arguments(i));
}
new ActiveXObject('SAPI.SpVoice').Speak(args.join(' '));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment