Suppress Annoying Beeps on Scroll in Windows

From wiki
Revision as of 13:29, 6 September 2016 by Vincent (talk | contribs) (Add administrative cmd instructions)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)


When you scroll very fast in some applications, Windows will start to do repeated annoying beeps.

These beeps are produced by the Beep service. Here is how to disable this behaviour.

Stopping beeps

Start a command as administrator and run the following commands

> net stop beep
The Beep service is stopping....
The Beep service was stopped successfully.
> sc config beep start= disabled
[SC] ChangeServiceConfig SUCCESS

Restore Defaults

Start a command as administrator and run the following commands

> net start beep
The Beep service is starting.
The Beep service was started successfully.
> sc config beep start= disabled
[SC] ChangeServiceConfig SUCCESS