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 -Name Microsoft.MicrosoftEdge | Foreach Version 44.18362.449.0
PS C:\> Get-AppxPackage -Name "Microsoft Edge" | Foreach Version PS C:\>
Thank you
8 Replies
Sort By
- NicholasDechertCopper Contributor
zerphyrIf you know the .exe file location, you can just use Get-Item to get the version of Edge
(Get-Item "C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe").VersionInfo.ProductVersion
Outputs "107.0.1418.35" for me
- vitsupCopper ContributorThis command works for getting Chromium based Edge version:
PS C:\> (Get-AppxPackage -Name "Microsoft.MicrosoftEdge.Stable").Version - Kelly_Y
Microsoft
- Gunnar-HaslingerIron 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