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):
- 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'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.
Artigos semelhantes
- Como transferir dinheiro da conta PayPal para a minha conta Chime
- Qual é a diferença entre Windows 10, Windows 10 KN, Windows 10 N, e Windows 10 Single Language?
- O Windows 11 será uma atualização gratuita para todos os usuários do Windows 10 quando o Windows 11 for lançado em 2018 ou 2019?
- Is there a way to get the current URL or path from within a Angular2 component? I'm currently using Angular2 rc6.