Can i get the result data of query this key "HKLM\SOFTWARE\Microsoft\Windows Media Foundation" ?

jourone 11 Reputation points
2023-02-27T22:21:54.7533333+00:00

Can i get the result of query this key?

HKLM\SOFTWARE\Microsoft\Windows Media Foundation

Windows 10
Windows 10
A Microsoft operating system that runs on personal computers and tablets.
11,500 questions
Windows 11
Windows 11
A Microsoft operating system designed for productivity, creativity, and ease of use.
9,478 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. MotoX80 33,376 Reputation points
    2023-02-27T23:03:17.7266667+00:00

    Open a command prompt and run this.

    reg.exe query "HKLM\SOFTWARE\Microsoft\Windows Media Foundation" /s
    
    

    Or open a Powershell prompt and run this.

    get-childitem "HKLM:\SOFTWARE\Microsoft\Windows Media Foundation"  -recurse
    

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.