Welcome to MSDN Blogs Sign in | Join | Help

How to turn off that annoying IE clicking sound

I recently installed IE 7 Beta 2 and the installation enabled a setting so that IE plays a *clicking* sound whenever I click on a link.

A couple of points

  • (IMO) Upgrades should, in general, maintain existing preferences
  • The particular clicking sound is terribly irritating to me.
  • It's so obvious that I have clicked, I don't feel I need the reminder.

How to disable the clicking sound programmatically

  • Just need to set a registry key (see the code for the path)
  • NOTE: The code I have preovided is more generic than strictly needed because the code snippet comes from a larger script I use to disable other sounds.
  • The translation to .REG file or another scripting language is straighforward.

Python Example

# -------------------------
import os
import sys
import win32com.client


def turn_off_app_event_sound( app, event ) :
  wsh = win32com.client.Dispatch("WScript.Shell")
  regpath = 'HKEY_CURRENT_USER\\AppEvents\\Schemes\\Apps\\%s\\%s\\.Current\\' % ( app, event )
  wsh.RegWrite( regpath, '' , 'REG_SZ' )

def turn_off_ie_navigating_sound() :

  turn_off_app_event_sound( "Explorer", "Navigating" )


if (__name__=='__main__') :

  turn_off_ie_navigating_sound()

# -------------------------
Published Monday, February 20, 2006 10:38 PM by saveenr

Comment Notification

If you would like to receive an email when updates are made to this post, please register here

Subscribe to this post's comments using RSS

Comments

# re: How to turn off that annoying IE clicking sound

NO NO NO NO NO NO NO!!!!

Don't mess with that registry key.

Instead, use the sounds control panel (mmsys.cpl) and set the "Start Navigation" sound to none.

Don't mess with the registry unless you absolutely have to.
Tuesday, February 21, 2006 2:03 AM by LarryOsterman

# re: How to turn off that annoying IE clicking sound

Btw, the click is on by default on XP, I suspect you just didn't notice it.
Tuesday, February 21, 2006 2:03 AM by LarryOsterman

# re: How to turn off that annoying IE clicking sound

Larry is correct, this sound enabled by default by XP. It's one of the first things I turn off.

As for use of the Registry, normally, yes one should typically use the control panel and not touch the registry. The reason I am using the registry is that I need to automate the task across about 5 machines. Writing to the registry directly is the only way I know how to do it. Having said that, directly touching the registry can easily place one's system into an unsupported state.
Tuesday, February 21, 2006 7:58 AM by saveenr

# re: How to turn off that annoying IE clicking sound

*chuckles* while I agree with Larry that would be the best way to do it, but that clicking sound is the most annoying thing they ever put in aside from all the pop ups wanting to clean icons off my desktop and so on. I mean my mouse clicks why do I need an wav file to just make a clicking sound?
Tuesday, February 21, 2006 8:40 AM by Jeff Parker

# re: How to turn off that annoying IE clicking sound

It's nice for when you use a touch-screen.

=)
Tuesday, February 21, 2006 9:07 PM by Anders

# re: How to turn off that annoying IE clicking sound

fuckin clicking sound, thanks for helping me out guys, i just happened to find this and now my probelm is fixed
Tuesday, June 06, 2006 9:50 PM by bubba

# re: How to turn off that annoying IE clicking sound

I set the "start navigation"to none, but the mouse button still make that horrible click.

Any suggestion?

Thanks

Monday, January 22, 2007 6:20 PM by jboos

# re: How to turn off that annoying IE clicking sound

Thx!  This solved my problem.

jboos: Maybe buy a mouse that doesn't make as much noise?

Tuesday, January 23, 2007 8:12 PM by vekkin

# re: How to turn off that annoying IE clicking sound

THANK YOU!!!!! oh, the silence!

Sunday, February 18, 2007 9:59 PM by willy

# re: How to turn off that annoying IE clicking sound

That click drove me nuts, thanks for the solution guys.

Monday, March 12, 2007 10:29 PM by Umit

# re: How to turn off that annoying IE clicking sound

I hear my mouse click sound while doing nothing. Just random clicks. Annoying.

Friday, March 23, 2007 7:33 AM by Jake

# re: How to turn off that annoying IE clicking sound

oh sweet jesus.....that was so easy. thank god! listening to music and surfing was always impossible...

Saturday, April 28, 2007 8:24 PM by nora

# re: How to turn off that annoying IE clicking sound

I attempted the registry hack, but nothing.  The method of using the sounds applet inside the control panel didn't work either.  any other suggestions.  Does someone have a registry hack that is made for moderate users?

Wednesday, June 06, 2007 10:53 PM by Kevin

# re: How to turn off that annoying IE clicking sound

Oh man! No more clicks! This is sheer BLISS!! I love you man!

Wednesday, August 22, 2007 5:11 PM by Thanks

# re: How to turn off that annoying IE clicking sound

awesome guys you are the best!!!

Tuesday, October 02, 2007 11:01 AM by nick

# re: How to turn off that annoying IE clicking sound

thanks so much, I hate the sound and this really worked and NO NO NO don't mess with the registry

"use the sounds control panel (mmsys.cpl) and set the "Start Navigation" sound to none."

Thursday, February 21, 2008 2:12 PM by xzula

# re: How to turn off that annoying IE clicking sound

Not that easy...

I set this "Start Navigation" sound to "(None)", after a while it is reset back to default! If I only knew which program restores it, I would go and kill the developer, I swear!

Wednesday, June 18, 2008 12:16 PM by Angry user

# re: How to turn off that annoying IE clicking sound

Rename the file, folks. Then, it won't play.

Friday, August 14, 2009 10:03 PM by Tom Seaview

Leave a Comment

(required) 
required 
(required) 

  
Enter Code Here: Required
 
Page view tracker