i cannot install the .inf files of the drivers. Please someone help me!!
DTS:X Ultra Not working
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.
101 answers
Sort by: Most helpful
-
Anonymous
2021-08-11T02:21:38+00:00 -
Anonymous
2021-08-10T20:53:12+00:00 thanks a lot :) working properly...
-
Anonymous
2021-08-02T14:58:04+00:00 Had the same problem and it worked. Thank you
-
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
}
-
Anonymous
2021-07-23T17:18:28+00:00 thanks you, so much