DTS:X Ultra Not working

Anonymous
2021-04-05T05:56:31+00:00

Hello Everyone,

I have Asus TUF F15, and my DTS:X Ultra keeps showing :

"Please connect external speakers to use DTS audio controls.

Please connect a Headphone to use DTS audio controls"

I have tried mostly method available online but noting seems to be working for me, So finally I reinstalled the windows and DTS:X started working but after a day same thing started happening again. I have latest Windows 10 Home and Latest Drivers. Rolling back driver doesn't work too.

If any one have solution then please share.

Thank you

Windows for home | Windows 10 | Devices and drivers

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

101 answers

Sort by: Newest
  1. Anonymous
    2021-07-29T18:09:31+00:00

    Open powershell as administrator and copy and paste this given below and after that restart laptop or pc and it will 100% fix the issue...

    Get all the provisioned packages

    $Packages = (get-item 'HKLM:\Software\Microsoft\Windows\CurrentVersion\Appx\AppxAllUserStore\Applications') | Get-ChildItem

    Filter the list if provided a filter

    $PackageFilter = $args[0]

    if ([string]::IsNullOrEmpty($PackageFilter))

    {

    echo "No filter specified, attempting to re-register all provisioned apps."

    }

    else

    {

    $Packages = $Packages | where {$_.Name -like $PackageFilter}

    if ($Packages -eq $null)

    {

    echo "No provisioned apps match the specified filter."

    exit

    }

    else

    {

    echo "Registering the provisioned apps that match $PackageFilter"

    }

    }

    ForEach($Package in $Packages)

    {

    get package name & path

    $PackageName = $Package | Get-ItemProperty | Select-Object -ExpandProperty PSChildName

    $PackagePath = [System.Environment]::ExpandEnvironmentVariables(($Package | Get-ItemProperty | Select-Object -ExpandProperty Path))

    register the package

    echo "Attempting to register package: $PackageName"

    Add-AppxPackage -register $PackagePath -DisableDevelopmentMode

    }

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2021-07-23T17:18:28+00:00

    thanks you, so much

    Was this answer helpful?

    0 comments No comments
  3. Anonymous
    2021-07-23T04:15:55+00:00

    will it work for asus tuf FX506L also???

    edited: i tried many other methods but this one finally worked..thank you so much!!!!

    Was this answer helpful?

    0 comments No comments
  4. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.


    Comments have been turned off. Learn more

  5. Anonymous
    2021-07-22T04:06:01+00:00

    Thank you soo much friend.

    Was this answer helpful?

    0 comments No comments