Edge Chromium Sccm



Jun 21, 2020 Learn how to Install Microsoft Edge Browser Using ConfigMgr. I have a blog post to explain Deploy Microsoft Edge Patches with SCCM Software Updates. This is all about the chromium based edge version. The new Microsoft Edge is based on Chromium and was released on January 15, 2020. It is compatible with all supported versions of Windows, and macOS. With speed, performance, best in class compatibility for websites and extensions, and built-in privacy and security features, it's the only browser you'll ever need. Microsoft Edge (Chromium) in SCCM Image. Is there a way to replace the old Microsoft Edge with the new Chromium based Microsoft Edge in my SCCM Image? I am hoping there's a way to replace it directly on the image instead of doing it via OSD Task Sequence. This website uses cookies. By continuing to use this site and/or clicking the 'Accept' button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us.

  1. Edge Chromium Sccm Free
  2. Edge Chromium Sccm Tool
  3. Edge Chromium Updates Sccm
Microsoft

Edge Chromium Sccm Free

January 14, 2020

Been testing Edge Chromium deployment a lot the last couple of days as the we are getting really close to release when I write this..
Configuration Manager 1910 has a builtin feature to deploy and update Edge Chromium which looks great, hard to test the update part as the Stable release and updates are not released yet.

When creating the deployment of Edge Chromium using the built- feature we select channel and version to deploy. Which is great as we most likely will have developers, testers that needs the Beta/Dev version as well for testing.

It will download the content and create a Application with two deployment types one for x64 and one for x86, both are deployed using a PowerShell script. The PowerShell script also turns off automatic updates so that they can be handled by MEMCM instead of using EdgeUpdater.

Detection Method for the Deployment types are configured automatically to allow for updating of Edge Chromium using MEMCM as the detection method checks registry value and is configured with the operator “Greater than or equal to” as shown below.

To be able to use the script the Powershell Execution policy needs to be set to RemoteSigned or Unrestriced.
Allsigned will timeout after 30 minutes
Restriced will result in immediate failure

Edge

Restriced is default in Windows 10 and if you are using that modifying the Install command will solve the problem for you by simply adding -ExecutionPolicy Bypass to the command line. Sample below
Sample original installation string:
powershell -File “.Install-Edge.ps1” -MSIName “MicrosoftEdgeBetaEnterpriseX64.msi” -ChannelID “{2cd8a007-e189-409d-a2c8-9af4ef3c72aa}”

Edge Chromium Sccm Tool

UpdateEdge Chromium Sccm

After adding -ExecutionPolicy Bypass
powershell -Executionpolicy bypass -File “.Install-Edge.ps1” -MSIName “MicrosoftEdgeBetaEnterpriseX64.msi” -ChannelID “{2cd8a007-e189-409d-a2c8-9af4ef3c72aa}”

Let’s look at the PowerShell script as well to prove that is sets the AutoUpdate policy to “0” , it is set during deployment.

If you choose to deploy Edge Chromium in another way make sure you configure AutoUpdate using GPO/Intune according to your update plan and that your detection method can handle the way you choose to update it!

Edge Chromium Updates Sccm

Stay tuned for more Edge Chromium posts the coming days as it goes live!