Skip to main content

How to Verify your MSEDGE Version Using the Windows Environments

Problem

When developing on the Windows Executors and Orbs, you may find that you need to verify your Microsoft Edge version for compatibility purposes.

Solution

You can use the following to retrieve this information:

- run: 
          command: | 
            $EdgeExe = Get-ItemPropertyValue 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\msedge.exe' "(default)" 
            $version = (Get-Item $EdgeExe).VersionInfo.ProductVersion 
            echo $version 
          shell: powershell.exe

Outcome

Your output will look something like this:

114.0.1823.43

You can use this to verify your builds are using the most recent version/ compatibilities of what you require.

Additional Resources


If you are still experiencing problems after trying this, for further questions or suggestions for your particular use-case, please contact CircleCI Support.

Did this answer your question?