• Home
  • Archive
  • Tools
  • Contact Us

The Customize Windows

Technology Journal

  • Cloud Computing
  • Computer
  • Digital Photography
  • Windows 7
  • Archive
  • Cloud Computing
  • Virtualization
  • Computer and Internet
  • Digital Photography
  • Android
  • Sysadmin
  • Electronics
  • Big Data
  • Virtualization
  • Downloads
  • Web Development
  • Apple
  • Android
Advertisement
You are here:Home » Let your Computer Speak current time and date on startup

By Abhishek Ghosh June 11, 2011 3:28 pm Updated on October 17, 2014

Let your Computer Speak current time and date on startup

After reading this tutorial; you will be able to make your Windows 7 Computer speak the current time and date every time you log on.

You might be interested on other similar automated voice oriented tutorial using VB scripts, like:

  • Your computer will greet you with a custom speech
  • Your computer will shut down from a right click option with custom speech
  • Your computer will speak the current time from right click menu

Let us proceed on how to make your Windows 7 computer speak the current date and time on every start up.

Advertisement

---

 

Creating the vb script to let your computer speak the current time date

 

Open Notepad. Write the following things for making your your computer speak and do the things after start up:

Update : Please scroll down to the comments section and do a minute modification collected with literately huge effort by our reader Johnathan Martinez.

 
Set Sapi = Wscript.CreateObject("SAPI.SpVoice")Sapi.speak "<span style="color: #ff0000;">Welcome back. Today is"</span>Sapi.speak weekdayname(weekday(date))Sapi.speak day(date)Sapi.speak monthname(month(date))Sapi.speak "<span style="color: #ff0000;">The current time is</span>"if hour(time) &gt; 12 thenSapi.speak hour(time)-12elseif hour(time) = 0 thenSapi.speak "<span style="color: #ff0000;">12</span>"elseSapi.speak hour(time)end ifend ifif minute(time) &lt; 10 thenSapi.speak "<span style="color: #ff0000;">o</span>"if minute(time) &lt; 1 thenSapi.speak "<span style="color: #ff0000;">clock</span>"elseSapi.speak minute(time)end ifelseSapi.speak minute(time)end ifif hour(time) &gt; 12 thenSapi.speak "<span style="color: #ff0000;">P.M.</span>"elseif hour(time) = 0 thenif minute(time) = 0 thenSapi.speak "<span style="color: #ff0000;">Midnight</span>"elseSapi.speak "<span style="color: #ff0000;">A.M.</span>"end ifelseif hour(time) = 12 thenif minute(time) = 0 thenSapi.speak "<span style="color: #ff0000;">Noon</span>"elseSapi.speak "<span style="color: #ff0000;">P.M.</span>"end ifelseSapi.speak "<span style="color: #ff0000;">A.M.</span>"end ifend ifend if
 

Save the file as Speaking Clock.vbs for the example above and do not forget to change the file type from text to All files from drop down menu in Notepad before saving it. Obviously, you can save with any name you like.

The red texts are what the computer will speak. For example, you can change the greetings from “Welcome back” to anything you like.

Double clicking the file will speak as you want.

 

Automate what the computer will on startup

 

Automating the script to run so that your computer will speak on each startup can be done in two ways:

 

  • By using task scheduler, like we did to create an alarm clock
  • Or by placing it to the startup folder

 

We will place it in the Startup folder.

Click the Start-Button, choose œAll Programs and you will find it as a folder named Startup. Right Click it and choose Open or Explore:

 

Let your Computer Speak current time and date on startup

Copy the VBS file you have created and paste there. You must be logged on as Admin. A security prompt will come, just accept it.

Just restart your Windows 7 computer and you will hear your computer will speak the things you defined in the script.

 

To disable it, just delete the file from startup folder.

 

Downloads for Let your Computer Speak current time and date on startup tutorial

 

As usually the required file for your computer to speak is here for your download.

The rar file is password protected, type thecustomizewindows.com as the password.

SignatureTagged With Make Windows 10 speak the time , speak the time , speak time windows 10 , how to make a speaking computer programe , have your computer speak the time and date , vbscript , download the time speak on pc , download the talking pc clock that speaks the current day date and the time , download the speak time on pc , dim vbs script
Facebook Twitter Pinterest

Abhishek Ghosh

About Abhishek Ghosh

Abhishek Ghosh is a Businessman, Surgeon, Author and Blogger. You can keep touch with him on Twitter - @AbhishekCTRL.

Here’s what we’ve got for you which might like :

Articles Related to Let your Computer Speak current time and date on startup

  • Nginx WordPress Installation Guide (All Steps)

    This is a Full Nginx WordPress Installation Guide With All the Steps, Including Some Optimization and Setup Which is Compatible With WordPress DOT ORG Example Settings For Nginx.

  • Changing Data With cURL for OpenStack Swift (HP Cloud CDN)

    Changing Data With cURL For Object is Quite Easy in OpenStack Swift. Here Are Examples With HP Cloud CDN To Make it Clear. Official Examples Are Bad.

  • Talking clock in right click context menu without any software

    After reading this tutorial, you will get an option in the right click context menu, click which your computer will speak the current time by your clock.

  • Talking Calculator in right click context menu without any software

    Talking Calculator in right click context menu without any software for your Windows 7 or any version of Windows PC.

performing a search on this website can help you. Also, we have YouTube Videos.

Take The Conversation Further ...

We'd love to know your thoughts on this article.
Meet the Author over on Twitter to join the conversation right now!

If you want to Advertise on our Article or want a Sponsored Article, you are invited to Contact us.

Contact Us

Comments

  1. Avatarpino says

    June 30, 2011 at 11:39 pm

    Is there a way to change the language?

  2. AbhishekAbhishek says

    July 1, 2011 at 4:47 am

    Surely. Which language?

  3. Avatarthea says

    January 14, 2012 at 3:48 pm

    wondering how you would include this to kick in after playing a song inside a playlist for the alarm clock thru the task sched

  4. Avatarjohnathan martinez says

    August 2, 2013 at 8:31 pm

    Hello i had a question i am using this format to make it speak every hour:

    Dim speaks, speech
    speaks = “It is ” & hour(time) & ” O’clock”
    Set speech = CreateObject(“sapi.spvoice”)
    speech.Speak speaks

    The problem is it reads it in 24hr and not 12hr format, do you happen to know how to fix that? thank you :)

  5. AbhishekAbhishek says

    August 2, 2013 at 11:27 pm

    That means it is bypassing the forced logic. Can you post it on Microsoft Answers forum ? I actually do not use Microsoft Windows anymore…the only last laptop had Win 7, its hard disk has died few weeks ago. Please let me know what actually happened at the end, other users might be helped easily…

  6. Avatarjohnathan martinez says

    August 4, 2013 at 10:59 pm

    i posted it on the forums, but never got a reply =/

  7. AbhishekAbhishek says

    August 5, 2013 at 3:51 pm

    That is a big problem of MS forums.

  8. Avatarjohnathan martinez says

    August 6, 2013 at 8:05 am

    Do you know any programmers or anyone that could look into that and figure out why its reading it in 24hr format even though i have computer set to 12hr?

  9. Abhishek GhoshAbhishek Ghosh says

    August 6, 2013 at 5:24 pm

    Honestly I do not know. You can do one thing, do a search with

    vbs script

    for any forum. There are some old peoples who have quite good grasp on VB (I unfortunately only saw some post, do know anyone). Other way is to post in StackExchange as question. Possibly you’ll find the person who will correct it.

  10. Avatarjohnathan martinez says

    August 7, 2013 at 4:00 am

    Hey abishek! just wanted to say thank you very much i managed to find an answer on stackexchange and here is what he said: (it worked btw)
    As documented, Hour() returns a number between 0 and 23 representing the current hour. You need to divide the hour modulo 12 to get what you want:

    speaks = “It is ” & Hour(Time) Mod 12 & ” o’clock”

    You just add Mod 12 after the hour(time). Very much appreciated i will make sure to keep checking your website for help and stuff :)

  11. Abhishek GhoshAbhishek Ghosh says

    August 10, 2013 at 11:25 pm

    Ahh…thats great Johnathan :) Thank you so much for visiting back and providing the feedback.
    You are welcome for next visit, the input and corrections by the readers are very important. You can have a look at all the right click tricks in this article.

  12. AvatarEmily says

    December 1, 2013 at 5:46 am

    I get an error message on start up 800oa 801 (or something)??

  13. AvatarEmily says

    December 1, 2013 at 5:52 am

    I managed to get the error code: 800AO401
    Windows 8.
    I don’t think my pc will let me log in as admin, even though it is my pc and I am the only user, but I did not get a prompt box asking.
    If anyone knows how to fix this, I would appreciate, as to have the date announced would be useful.?

  14. Abhishek GhoshAbhishek Ghosh says

    December 1, 2013 at 7:26 am

    Why your PC will not allow to login as Admin?

  15. AvatarEmily says

    December 1, 2013 at 10:16 am

    I have no idea, only sometimes, it will not let me do things like save a program (now called apps i believe) in the program folder, I have to save them in downloads folder in documents. I asked dell about this, new pc and all, and the guy said, it is just too dangerous, if I have access.

Subscribe To Our Free Newsletter

Get new posts by email:

Please Confirm the Subscription When Approval Email Will Arrive in Your Email Inbox as Second Step.

Search this website…

 

Popular Articles

Our Homepage is best place to find popular articles!

Here Are Some Good to Read Articles :

  • Cloud Computing Service Models
  • What is Cloud Computing?
  • Cloud Computing and Social Networks in Mobile Space
  • ARM Processor Architecture
  • What Camera Mode to Choose
  • Indispensable MySQL queries for custom fields in WordPress
  • Windows 7 Speech Recognition Scripting Related Tutorials

Social Networks

  • Pinterest (24.3K Followers)
  • Twitter (5.8k Followers)
  • Facebook (5.7k Followers)
  • LinkedIn (3.7k Followers)
  • YouTube (1.3k Followers)
  • GitHub (Repository)
  • GitHub (Gists)
Looking to publish sponsored article on our website?

Contact us

Recent Posts

  • Tips on S Pen Air ActionsSeptember 24, 2023
  • Market Segmentation in BriefSeptember 20, 2023
  • What is Booting?September 18, 2023
  • What is ncurses?September 16, 2023
  • What is JTAG in Electronics?September 15, 2023
PC users can consult Corrine Chorney for Security.

Want to know more about us?

Read Notability and Mentions & Our Setup.

Copyright © 2023 - The Customize Windows | dESIGNed by The Customize Windows

Copyright  · Privacy Policy  · Advertising Policy  · Terms of Service  · Refund Policy