"Windows Critical Stop.wav" played randomly after Windows 10 Creators Update

0

I have been using my Windows 10 system for about half a day now following the Creators Update install. I have been getting the following sound being played randomly:

Windows Critical Stop.wav

I don't know the source, as there is no associated messagebox or notice anywhere.

How can I go about tracing this annoying problem?

Sabuncu

Posted 2017-09-11T16:25:45.693

Reputation: 334

1When the sound appears the next time, press WINDOWS+R keys, enter eventvwr.exe, now click on "Windows Logs" in the left column, click on "System" and now look for errors (not warnings or information) that happened in the moment the sound appeared and add them to your question.Also make sure that no program which is minimized as a system tray makes that sound (you could stop such programs and see if the sound appears). – testeaxeax – 2017-09-11T16:47:49.647

@nullterminatedstring The sound just happened, and I launched the Windows event viewer. Unfortunately, there were no recent events posted, error or non-error. I will have to look into your second suggestion, to selectively enable/disable tray apps. – Sabuncu – 2017-09-11T18:47:49.240

Okay, where there any errors logged in the category "Application"? – testeaxeax – 2017-09-12T15:32:06.547

@nullterminatedstring There were errors, but with much earlier timestamps (from when the system was first booted up). I am thinking that I should leave procmon running, and when the sound happens, look at the logs. The only problem is, going through procmon logs is not pleasant. – Sabuncu – 2017-09-12T17:57:42.043

Actually going through procmon logs is not that bad, you need to set a filter to only include filesystem operations for the path "C:\Windows\Media\Windows Critical Stop.wav". – testeaxeax – 2017-09-13T14:57:20.443

@nullterminatedstring I hope the name of the wav file is included in the procmon logs. – Sabuncu – 2017-09-13T15:45:46.223

At least on my system the programs I tried accessed the wav file to play the sound and therefore got logged by procmon. – testeaxeax – 2017-09-13T17:09:02.207

@nullterminatedstring That's good news. Again, thanks so much for your support. – Sabuncu – 2017-09-13T19:10:53.620

Answers

0

A thing to watch for is backspace; in some input fields and terminal prompts if you use backspace when the caret is at the start of the input field it makes the sound -- so make sure it is truly "random" and not just happening as you type.

The BEL (bell) character is an invisible control character which can also cause the sound -- type Ctrl + G (^G) in Command Prompt and hit enter for an example.

If are using a terminal application and you have programs that are writing to STDOUT you could capture their output and look in a hex editor to see if the value 0x07 (BEL) is present.

Pocketsand

Posted 2017-09-11T16:25:45.693

Reputation: 101