Jump to content

Help turning off _IE sounds


Recommended Posts

Set HKEY_CURRENT_USER\AppEvents\Schemes\Apps\Explorer\Navigating\.Current, Default = "" in the registry:

; Disable clicking noise on navigation
$sKey = "HKEY_CURRENT_USER\AppEvents\Schemes\Apps\Explorer\Navigating\.Current"
$sOld = RegRead($sKey, "") ; Save $sOld somewhere if you will restore
RegWrite($sKey, "", "REG_EXPAND_SZ", "")

Don't forget to save the old value somewhere if you will ever want to restore it.

;)

Edited by PsaltyDS
Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Link to comment
Share on other sites

Set HKEY_CURRENT_USER\AppEvents\Schemes\Apps\Explorer\Navigating\.Current, Default = "" in the registry:

; Disable clicking noise on navigation
$sKey = "HKEY_CURRENT_USER\AppEvents\Schemes\Apps\Explorer\Navigating\.Current"
$sOld = RegRead($sKey, "") ; Save $sOld somewhere if you will restore
RegWrite($sKey, "", "REG_EXPAND_SZ", "")

Don't forget to save the old value somewhere if you will ever want to restore it.

;)

Is these keys are valid for xp, vista or 7 ?

AutoIt 3.3.14.2 X86 - SciTE 3.6.0WIN 8.1 X64 - Other Example Scripts

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...