Forum Discussion
NVIDIA Control Panel won't open
- Feb 10, 2023
Next insights and workaround:
Seems something is wrong with the path validation / ACLs for executables.
But it's possible to start NVIDIA Control Panel from other locations.
This workaround (/PowerShell command) copies the AppX Package of NVIDIA Control Panel to your Desktop where you can start the executables (specifically "nvcplui").
The command will start nvcplui right after copying.
Get-AppxPackage 'NVIDIACorp.NVIDIAControlPanel' | % { Copy-Item -LiteralPath $_.InstallLocation -Destination $Env:USERPROFILE\Desktop -Recurse -Force; Invoke-Item "$Env:USERPROFILE\Desktop\NVIDIACorp.NVIDIAControlPanel_*\nvcplui.exe" }
Next insights and workaround:
Seems something is wrong with the path validation / ACLs for executables.
But it's possible to start NVIDIA Control Panel from other locations.
This workaround (/PowerShell command) copies the AppX Package of NVIDIA Control Panel to your Desktop where you can start the executables (specifically "nvcplui").
The command will start nvcplui right after copying.
Get-AppxPackage 'NVIDIACorp.NVIDIAControlPanel' | % { Copy-Item -LiteralPath $_.InstallLocation -Destination $Env:USERPROFILE\Desktop -Recurse -Force; Invoke-Item "$Env:USERPROFILE\Desktop\NVIDIACorp.NVIDIAControlPanel_*\nvcplui.exe" }
Also I updated my windows 11 to Build 25295.rs_prerelease.230203-1346. But the update didn't solve the problem.
- swabboFeb 10, 2023Brass Contributor
PS:
There is a known issue with combase.dll, mentioned in the 25295 release notes.
https://blogs.windows.com/windows-insider/2023/02/09/announcing-windows-11-insider-preview-build-25295/#:~:text=We%E2%80%99re%20working%20on%20the%20fix%20for%20an%20underlying%20issue%20related%20to%20combase.dll%2C%20causing%20crashes%20with%20multiple%20apps%20using%20GetKnownFolder%20APIs%20after%20upgrading%20to%20Build%2025290%2C%20including%20Notepad%20and%20Windows%20Terminal%20for%20IME%20users.
- We’re working on the fix for an underlying issue related to combase.dll, causing crashes with multiple apps using GetKnownFolder APIs after upgrading to Build 25290, including Notepad and Windows Terminal for IME users.