How to fix detection of old version of Microsoft Raw Image Extension and VP9 Video Extension?

Daniel Karásek 5 Reputation points
2023-10-09T10:17:52.7966667+00:00

Hi,

We have this problem with old version of Microsoft Raw Image Extension and VP9 Video Extension, even after we updated them, the old versions can be detected as installed. And when we tried to uninstall them, they remaine detected as installed. We had this problem with MS Paint 3D and when we used this command powershell -nop -ep bypass -c "Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register \"$($_.InstallLocation)\AppXManifest.xml\"}" it helped and fixed the problem.

Thanks for reply.

Windows 10 Security
Windows 10 Security
Windows 10: A Microsoft operating system that runs on personal computers and tablets.Security: The precautions taken to guard against crime, attack, sabotage, espionage, or another threat.
3,016 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Daniel Karásek 5 Reputation points
    2023-10-12T07:36:16.7766667+00:00

    I have found the solution.

    You have to run following commandlets in powershell.

    1)Set-ExecutionPolicy Unrestricted

    2)Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}

    1 person found this answer helpful.

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.