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. Ho testato i file che terminano con wav e mp3 e funzionano bene, probabilmente ci sono anche altri formati che funzionano.
Doppio clic su di esso e troverete il suono riprodotto.
Ora tutto quello che dovete fare è creare un'attività pianificata per chiamare questo script ogni ora all'ora.
Articoli simili
- Come trasferire denaro dal conto PayPal al mio conto chime
- Qual è la differenza tra Windows 10, Windows 10 KN, Windows 10 N e Windows 10 Single Language?
- Windows 11 avrà gli stessi requisiti di sistema di Windows 10 quando Windows 11 verrà rilasciato?
- Is there a way to get the current URL or path from within a Angular2 component? I'm currently using Angular2 rc6.