You can obtain the version of the
Microsoft Edge browser on a Windows system using the
Get-AppXPackage
cmdlet with
Get-AppXPackage -Name Microsoft.MicrosoftEdge
.
PS C:\> Get-AppXPackage -Name Microsoft.MicrosoftEdge Name : Microsoft.MicrosoftEdge Publisher : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US Architecture : Neutral ResourceId : Version : 40.15063.0.0 PackageFullName : Microsoft.MicrosoftEdge_40.15063.0.0_neutral__8wekyb3d8bbwe InstallLocation : C:\Windows\SystemApps\Microsoft.MicrosoftEdge_8wekyb3d8bbwe IsFramework : False PackageFamilyName : Microsoft.MicrosoftEdge_8wekyb3d8bbwe PublisherId : 8wekyb3d8bbwe IsResourcePackage : False IsBundle : False IsDevelopmentMode : False IsPartiallyStaged : False PS C:\>
If you just want to see the version number and not the additional information, you can add "| select Version" at the end of the command.
PS C:\> Get-AppXPackage -Name Microsoft.MicrosoftEdge | select Version Version ------- 40.15063.0.0 PS C:\>