Casa > H > How To Get An Hourly Chime On My Windows 10 Pc

How to get an hourly chime on my Windows 10 PC

I have a solution to this,

  • 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):

  1. Option Explicit 
  2.  
  3. ' Change the path and filename below 
  4. Dim sound : sound = "C:\Windows\Media\Alarm01.wav" 
  5.  
  6. Dim o : Set o = CreateObject("wmplayer.ocx") 
  7. With o 
  8. .url = sound 
  9. .controls.play 
  10. While .playstate <> 1 
  11. wscript.sleep 100 
  12. Wend 
  13. .close 
  14. End With 
  15.  
  16. Set o = Nothing 

Change the C:\Windows\Media\Alarm01.wav to the full path and filename of the sound you want to play. I'testei arquivos terminando wav e mp3 e eles funcionam bem, provavelmente existem outros formatos que funcionam também.

P>Deuplo clique nele e você'encontrará o som tocado.

Agora tudo que você precisa fazer é criar uma tarefa agendada para chamar este script a cada hora na hora.

De Warden

O que são alguns truques secretos desconhecidos que você deve saber sobre o Google? :: Qual foi a única habilidade que aprendeste só por diversão?