The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    how to disable srs powered premium sound?

    Discussion in 'Dell XPS and Studio XPS' started by Asgaroth, Jun 17, 2010.

  1. Asgaroth

    Asgaroth Notebook Geek

    Reputations:
    0
    Messages:
    91
    Likes Received:
    0
    Trophy Points:
    15
    I don't like that thing at all. It's altering the music sound. How to disable this thing permanently.

    Thanks
     
  2. entrance002

    entrance002 Notebook Consultant

    Reputations:
    2
    Messages:
    207
    Likes Received:
    0
    Trophy Points:
    30
    I remember I had to go into Control Panel to disable it. However, my IDT has weird issues in that you would disable it, but then playing some sounds would re-initiate it automatically. I ended up simply uninstalling IDT entirely, as I don't really use the 5.1 function. I now simply use the auto-detected sound driver after reboot.
     
  3. Asgaroth

    Asgaroth Notebook Geek

    Reputations:
    0
    Messages:
    91
    Likes Received:
    0
    Trophy Points:
    15
    That's the thing, after reboot it's enabled again.
     
  4. funky monk

    funky monk Notebook Deity

    Reputations:
    233
    Messages:
    1,485
    Likes Received:
    1
    Trophy Points:
    55
    I remember hearing about a registry value which you could chage which would disable it at startup.
     
  5. gaah

    gaah Notebook Deity

    Reputations:
    180
    Messages:
    793
    Likes Received:
    2
    Trophy Points:
    31
    I'm the one that found the registry key. Just had to throw that out there. :p

    The key is: HKEY_LOCAL_MACHINE\SOFTWARE\IDT\Apo\LFX\Speaker1\plugins\SRS and change D-WORD "Load" to 0 for off/false. No need to reboot.

    Additionally open the Sound control panel and for each playback device check "disable all enhancements".
     
  6. cbaty08

    cbaty08 Notebook Evangelist

    Reputations:
    39
    Messages:
    696
    Likes Received:
    0
    Trophy Points:
    0
    Thanks for that gaah. +repped+
     
  7. entrance002

    entrance002 Notebook Consultant

    Reputations:
    2
    Messages:
    207
    Likes Received:
    0
    Trophy Points:
    30
    That is why I uninstalled IDT Audio entirely. But you can try the other registry mods proposed here =)
    gluck!
     
  8. morganstar

    morganstar Newbie

    Reputations:
    0
    Messages:
    1
    Likes Received:
    0
    Trophy Points:
    5
    Thanks for the solution gaah!

    To enable and disable the SRS enhancements without manually editing the registry every time, I created a couple .BAT files. They have to be "Run as Administrator" to have an effect.

    srs-audio-enable.bat:
    Code:
    REG ADD HKLM\SOFTWARE\IDT\Apo\LFX\Speaker1\plugins\SRS /v load /t REG_DWORD /d 1 /f
    srs-audio-disable.bat:
    Code:
    REG ADD HKLM\SOFTWARE\IDT\Apo\LFX\Speaker1\plugins\SRS /v load /t REG_DWORD /d 0 /f