How do I get Windows 10 to chime / beep on the hour?

Here is a solution which:

  • Doesn't require any additional software to be installed
  • Works on all versions of Windows from XP to 10
  • Doesn't display anything on screen whilst the sound is playing

Save the following code somewhere on your computer with a vbs extension (for example, play_sound.vbs):

Option Explicit

' Change the path and filename below
Dim sound : sound = "C:\Windows\Media\Alarm01.wav"

Dim o : Set o = CreateObject("wmplayer.ocx")
With o
    .url = sound
    .controls.play
    While .playstate <> 1
        wscript.sleep 100
    Wend
    .close
End With

Set o = Nothing

Change the C:\Windows\Media\Alarm01.wav to the full path and filename of the sound you want to play. I've tested files ending wav and mp3 and they work fine, there are probably other formats which work too.

Double click on it and you'll find the sound plays.

Now all you need to do is create a Scheduled Task to call this script every hour on the hour.

Finally, if you're interested, here is a page where you can download the hourly chime that comes from those retro Casio digital watches.


In Windows 10. You have built-in app Alarm & Clock.

To set up a new alarm, select New + . Select the item under Sound to choose the alarm sound that works best for you.

Set alarm for everyday at time you need. Example (7am)

Set the Snooze time to One hour. (So u will get alter every one hour)

Once the Alarm altering you. Only you need to click on Snooze

enter image description here


If you use the full address of wmplayer.exe then it works. E.g. C:\Program Files\Windows Media Player\wmplayer.exe.

Your WAV argument is fine.

The only problem you'll have with WMP is that it no longer supports automatically closing after playback so your scheduled task can open WMP and play your sound but you'll need to write another Scheduled Task to close WMP a few seconds later as it'll remain open and it won't play the sound again...

You can use VLC player as it has a command line switch that can close the player after it's finished playing. The switch ic vlc:\\quit.

To be brutally honest, you're best looking for an application that will run in the system tray that can play a sound at your preferred interval and it'll probably be more reliable than launching a resource thirsty application for a simple "chime".