Difference between revisions of "Windows Beeps"
From wiki
(Created page with "{{DISPLAYTITLE:Suppress Anoying Beeps on Scroll in Windows}} When you scroll very fast in some applications, Windows will start to do repeated annoying beeps. These beeps ar...") |
(Add administrative cmd instructions) |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
− | {{DISPLAYTITLE:Suppress | + | {{DISPLAYTITLE:Suppress Annoying Beeps on Scroll in Windows}} |
When you scroll very fast in some applications, Windows will start to do repeated annoying beeps. | When you scroll very fast in some applications, Windows will start to do repeated annoying beeps. | ||
Line 6: | Line 6: | ||
== Stopping beeps == | == Stopping beeps == | ||
− | <syntaxhighlight lang="console"> | + | [https://technet.microsoft.com/en-us/library/cc947813(v=ws.10).aspx Start a command as administrator] and run the following commands<syntaxhighlight lang="console"> |
> net stop beep | > net stop beep | ||
The Beep service is stopping.... | The Beep service is stopping.... | ||
Line 15: | Line 15: | ||
== Restore Defaults == | == Restore Defaults == | ||
− | <syntaxhighlight lang="console"> | + | [https://technet.microsoft.com/en-us/library/cc947813(v=ws.10).aspx Start a command as administrator] and run the following commands<syntaxhighlight lang="console"> |
> net start beep | > net start beep | ||
The Beep service is starting. | The Beep service is starting. |
Latest revision as of 13:29, 6 September 2016
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