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.exeOutcome
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
See information on our Windows Orb:
https://circleci.com/developer/orbs/orb/circleci/windows
Information on our Windows Executor:
https://circleci.com/docs/using-windows/https://docs.gradle.org/current/userguide/troubleshooting.html
If you are still experiencing problems after trying this, for further questions or suggestions for your particular use-case, please contact CircleCI Support.