Skip to content

Instantly share code, notes, and snippets.

@usk81
Last active March 7, 2016 01:53
Show Gist options
  • Save usk81/f9e001ccf43a8b4bdc9e to your computer and use it in GitHub Desktop.
Save usk81/f9e001ccf43a8b4bdc9e to your computer and use it in GitHub Desktop.
Time signal like MacOSX for Windows OS

set time_signal.vbs on Windows scheduler

var args = [];
for(var i = 0; i < WScript.Arguments.length; i++)
args.push(WScript.Arguments.Item(i));
var sapi = new ActiveXObject('SAPI.SpVoice');
sapi.Speak(args.join(' '));
C:\Users\(your-account)\say.js %time:~0,5%
CreateObject("WScript.Shell").Run "C:\Users\(your-account)\time_signal.bat",0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment