Tuesday, April 30, 2013

Beranda » , » Make Computer To Speak Out Time At Every Hour in Windows

Make Computer To Speak Out Time At Every Hour in Windows

Here is an interesting trick that makes your computer to speak out the time automatically at every hour, like making your own Big Ben Clock on your Windows.
  • Firstly

Create a file with the following lines codes:

  1. Dim speaks, speech
  2. speaks = “It is ” & hour(time) & ” O’clock”
  3. Set speech = CreateObject(“sapi.spvoice”)
  4. speech.Speak speaks
And save as .VBS file. For example, time.vbs. Right, I’ve made it easy for you that you can just right-click the link and choose Save As.. to download it from my Dropbox.

You can double click the file to test out how it sounds.
  • Secondly
Let’s schedule it to run every hour.

1. Open the Task Scheduler, you can press WIN + R, type in taskschd.msc, and hit Enter to start.
2. In Task Scheduler, click Create Task under Action.
3. Give a name under General tab, such as Time.
4. Add a trigger to run the task repeatedly very hour. Like below:
5. Add an action under Actions tab, like below:
6. That’s it. Click Ok to close out it.

Congratulations. You’ve successfully turned your computer into a famous Big Ben Clock with a nice male voice speaking out time at every hour.

Note: If this tutorial worked for you (and it should work), please leave a comment below. Thanks.