Open an elevated powershell.
In the prompt, copy and paste this and hit enter.
[ICODE]Get-ItemProperty -Path "HKLM:\Software\WOW6432Node\Microsoft\Windows\Curr entVersion\Uninstall\*" ` -ErrorAction SilentlyContinue | Where-Object { $_.DisplayName -like "*WebView2*" } | Select-Object DisplayName, DisplayVersion[/ICODE]
Let us know the output.
In the prompt, copy and paste this and hit enter.
[ICODE]Get-ItemProperty -Path "HKLM:\Software\WOW6432Node\Microsoft\Windows\Curr entVersion\Uninstall\*" ` -ErrorAction SilentlyContinue | Where-Object { $_.DisplayName -like "*WebView2*" } | Select-Object DisplayName, DisplayVersion[/ICODE]
Let us know the output.
Comment