Forum Discussion
zerphyr
Dec 10, 2020Copper Contributor
How to check correct version of Edge Chromium
Hi, I've installed Edge Chromium on my PC but when I run below command, it's reflecting that Edge Legacy is installed How do I reflect Edge Chromium version? Please advise PS C:\> Get-AppxPackage -...
Kelly_Y
Microsoft
Dec 11, 2020zerphyr Hello! Would it be possible for you to check the version using the browser settings or is there a specific reason to use PS? Here is some information from our FAQ
-Kelly
- zerphyrDec 14, 2020Copper ContributorKelly_Y, I'm using PS to check on remote users on the version. When I run PS on my PC, it's reflecting as above although the version on my PC is reflecting the correct Edge Chromium version
- Gunnar-HaslingerDec 14, 2020Iron Contributor
zerphyr the Get-AppxPackage Cmdlet shows only Appx-Apps.
Use WMI with PowerShell as follows, to get regular Installed Software-Packages:
PS C:\Users\gunnar> Get-WmiObject -Class Win32_Product | where Name -Like "*Edge*" IdentifyingNumber : {DCF62978-E764-38B6-8D70-FD4BFF0EDEE5} Name : Microsoft Edge Vendor : Microsoft Corporation Version : 87.0.664.60 Caption : Microsoft Edge IdentifyingNumber : {ECEB079C-D6D8-3840-BA5B-19267156E2FF} Name : Microsoft Edge Dev Vendor : Microsoft Corporation Version : 89.0.723.0 Caption : Microsoft Edge Dev IdentifyingNumber : {15DFC7CC-865D-3F20-A979-A7EF2F505E31} Name : Microsoft Edge Beta Vendor : Microsoft Corporation Version : 88.0.705.18 Caption : Microsoft Edge Beta
- zerphyrDec 21, 2020Copper Contributor@Gunnar, thank you for the details
Windows PowerShell
Copyright (C) Microsoft Corporation. All rights reserved.
=============================================================
Try the new cross-platform PowerShell https://aka.ms/pscore6
PS C:\Users\7036419> Get-WmiObject -Class Win32_Product | where Name -Like "*Edge*"
PS C:\Users\7036419>
=============================================================
Below is the message when I run the command
I'm currently replying to the message using Edge Chromium