Microsoft Edge upgrade from sccm

Question

Hi all,

I am trying to update MS edge from sccm but client not showing any update while scanning is happening. I am using SCCM 1906 and created Software update group & distributed package to my client machine.

Note:- this is first time where i am trying to update from sccm for windows 10 device.

see below logs, do i need to enable anything.

Its a WSUS Update Source type ({4700280E-B8E3-43BB-9D86-1DBB23A1EF3F}), adding it. WUAHandler 6/18/2020 12:45:21 PM 11152 (0x2B90)
This device is not enrolled into Intune. WUAHandler 6/18/2020 12:45:21 PM 10432 (0x28C0)
Device is not MDM enrolled yet. All workloads are managed by SCCM. WUAHandler 6/18/2020 12:45:21 PM 10432 (0x28C0)
SourceManager::GetIsWUfBEnabled – There is no Windows Update for Business settings assignment. Windows Update for Business is not enabled through ConfigMgr WUAHandler 6/18/2020 12:45:21 PM 10432 (0x28C0)
Existing WUA Managed server was already set (http://Server:8530), skipping Group Policy registration. WUAHandler 6/18/2020 12:45:21 PM 11152 (0x2B90)
Added Update Source ({4700280E-B8E3-43BB-9D86-1DBB23A1EF3F}) of content type: 2 WUAHandler 6/18/2020 12:45:21 PM 11152 (0x2B90)
Scan results will include all superseded updates. WUAHandler 6/18/2020 12:45:21 PM 11152 (0x2B90)
Search Criteria is (DeploymentAction=* AND Type=’Software’) OR (DeploymentAction=* AND Type=’Driver’) WUAHandler 6/18/2020 12:45:21 PM 11152 (0x2B90)
Async searching of updates using WUAgent started. WUAHandler 6/18/2020 12:45:23 PM 11152 (0x2B90)
Async searching completed. WUAHandler 6/18/2020 12:45:28 PM 12172 (0x2F8C)
Successfully completed scan. WUAHandler 6/18/2020 12:45:28 PM 11152 (0x2B90)

Answers ( 3 )

  1. I would recommend using the normal application instead of Software update for enterprise version of Windows 10 and Windows 7 devices.

    Check this https://snipboard.io/vkwbJs.jpg

    The following is the script MS provides to install MS Edge Chromium version

    ==========================================

    param
    (
    [parameter(Mandatory=$true)]
    [ValidateNotNullOrEmpty()]$MSIName,

    [parameter(Mandatory=$true)]
    [ValidateNotNullOrEmpty()]$ChannelID
    )

    # Registry value name is in the format “Update<{ChannelID}> where ChannelID is the GUID
    Set-Variable -Name “AutoUpdateValueName” -Value “Update$ChannelID” -Option Constant
    Set-Variable -Name “RegistryPath” -Value “HKLM:\SOFTWARE\Policies\Microsoft\EdgeUpdate” -Option Constant

    # Test if the registry key exists. If it doesn’t, create it
    $EdgeUpdateRegKeyExists = Test-Path -Path $RegistryPath

    if (!$EdgeUpdateRegKeyExists)
    {
    New-Item -Path $RegistryPath
    }

    # See if the autoupdate value exists
    if (!(Get-ItemProperty -Path $RegistryPath -Name $AutoUpdateValueName -ErrorAction SilentlyContinue))
    {
    New-ItemProperty -Path $RegistryPath -Name $AutoUpdateValueName -Value 0 -PropertyType DWord
    }

    $AutoupdateValue = (Get-ItemProperty -Path $RegistryPath -Name $AutoUpdateValueName).$AutoUpdateValueName

    # If the value is not set to 0, auto update is not turned off, this is a failure
    if ($AutoupdateValue -ne 0)
    {
    Write-Host “Autoupdate value set incorrectly”
    return -1
    }
    # Else install the Edge MSI
    else
    {
    return (Start-Process msiexec.exe -Wait -ArgumentList “/i $MSIName /q”).ExitCode
    }

    ==============================

    Best answer
    1
    2020-06-18T19:32:46+05:30
    This answer was edited.

    What do you mean by an upgrade?

    1. Are you upgrading from the Edge legacy version to the Edge Chromium version? If so try Deploy Microsoft Edge Chromium Browser Using SCCM ConfigMgr https://www.anoopcnair.com/deploy-edge-chromium-browser-using-sccm/

    2. If you have already completed version #1, then you can use the follow – Deploy Microsoft Edge Patches with SCCM Software Updates|ConfigMgr Part 1 https://www.anoopcnair.com/deploy-microsoft-edge-patches-with-sccm-software-updatesconfigmgr-part-1/

      0
      2020-06-19T05:41:38+05:30

      Hi Anoop,
      Yes, i am trying to upgrading MS EDGE legacy version to latest EDGE (83 Stable) version.
      I am using SCCM version 1906 that’s reason this option is not available in my SCCM. So i trying to upgrade MS EDGE using software update group.
      In WUAHANDER log, nothing shows updates on client machine.
      Do i need to do any more change? Do i need to check any other log files?

Leave an answer

Sorry, you do not have permission to answer to this question .