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: Oldest
  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-08-02T14:58:04+00:00

    Had the same problem and it worked. Thank you

    Was this answer helpful?

    0 comments No comments
  3. Anonymous
    2021-08-10T20:53:12+00:00

    thanks a lot :) working properly...

    Was this answer helpful?

    0 comments No comments
  4. Anonymous
    2021-08-11T02:21:38+00:00

    i cannot install the .inf files of the drivers. Please someone help me!!

    Was this answer helpful?

    0 comments No comments
  5. Anonymous
    2021-08-28T11:41:54+00:00

    Driver for DTS APO4x is not available to download anymore on this link

    Was this answer helpful?

    0 comments No comments