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 -...
NicholasDechert
Nov 09, 2022Copper 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