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 -...
zerphyr
Dec 14, 2020Copper Contributor
Kelly_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-Haslinger
Dec 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- Gunnar-HaslingerDec 22, 2020Iron Contributor
I have no idea why your Win32_Product WMI-Class doesn't contain Edge.
There could be two options:
- Your Win32_Product WMI-Class doesn't work at all, to check this remove the where-Filter and just list all installed Product. The List should match your Control-Panel => Software List.
- You haven't installed any MSI-Version of Edge, does it show up in Control-Panel => Software?
- zerphyrDec 23, 2020Copper Contributor
Gunnar-Haslinger, thank you for the details. The installer is based on exe for Edge and not msi
Does it mean that it's not able to detect if exe installer was used instead of msi? If that is correct, I'll proceed to reinstall using msi installer