Close Menu
    Facebook X (Twitter) Instagram
    Friday, October 10
    X (Twitter) LinkedIn Reddit RSS
    All about Endpoint Management
    • Home
    All about Endpoint Management
    Home»configmgr»Migrating Windows Update Workloads from SCCM to Intune: How to Verify Management Tool

    Migrating Windows Update Workloads from SCCM to Intune: How to Verify Management Tool

    Eswar KonetiBy Eswar KonetiAugust 23, 9:55 pm2 Mins Read configmgr 2,125 Views
    Share
    Facebook Twitter LinkedIn Reddit

    In a recent project, I was involved in migrating endpoint workloads from SCCM/ConfigMgr to Microsoft Intune. A key part of this migration was transferring the Windows Update for Business (WUfB) workload to Intune, with the goal of managing Windows updates exclusively through Intune.

    However, after migrating the WUfB workload to Intune, I noticed that some devices continued to receive patches from SCCM. This discrepancy occurs because you will need to configure and assign update rings in Intune otherwise, SCCM will still manage the Windows update patching.

    To determine whether a device’s Windows patching is controlled by SCCM or Intune, you can use a simple PowerShell script. This method is effective because there's no direct UI on the client to show this information, and logs might only confirm that WUfB is managed by Intune without clarifying the active update management tool.

    Identifying Windows Update Management Tool with PowerShell Script:

    PowerShell Script to Identify Update Management Tool

    Here’s a PowerShell script that helps identify whether Windows updates are managed by SCCM/WSUS or by Intune/WUfB:

    <#
    Description: This script will help you to determine whether the default Automatic Update service on a machine is managed by SCCM/WSUS or WUfB/Intune based on the service name.
    Name:WhoManagesWindowsUpdate.ps1
    #>
    #Get the default Automatic Update service
    $data = (New-Object -ComObject "Microsoft.Update.ServiceManager").services | Where-Object {$_.IsDefaultAUService -eq $true}
    #Check the name of the default Automatic Update service and output the corresponding management tool
    if ($data.Name -eq "Windows Server Update Service") {
    Write-Host "SCCM/WSUS"
    } elseif ($data.Name -eq "Microsoft Update")
    {
    Write-Host "WUfB/Intune"
    }
    elseif ($data.Name -eq "Windows Update")
    {
    Write-Host "Not SCCM or Intune"
    } else
    {
    Write-Host "Unknown update service: $($data.Name)"
    }

    Summary Table

    The table below summarizes which management tool controls the Windows update patching based on the service name:

    Sl
    No
    Service Managed
    by
    1 Windows
    Server Update Service
    SCCM/WSUS
    2 Microsoft
    Update
    Intune/WUfB
    3 Windows
    update
    Not
    SCCM/Intune (Default)

    Output Examples

    • Device Managed by Intune: The output will show WUfB/Intune.
    • Device Managed by SCCM: The output will show SCCM/WSUS.
    • Device Managed by Default Update (without SCCM/Intune): The output will show Not SCCM or Intune.
    • image

    By running this script, you can quickly determine the update management tool for any device and ensure that the migration to Intune is fully complete.

    Device Managedby intune Microsoft Update SCCM WhomanageWindowsPatching WSUS wufb
    Share. Twitter LinkedIn Email Facebook Reddit

    Related Posts

    Export Microsoft Entra ID User Authentication Methods to CSV using PowerShell & Microsoft Graph API

    August 13, 2:08 pm

    SCCM SQL Report – Compare Installed Apps on TWO Different Computers

    July 13, 10:35 am

    Automating Intune Deployment Rings Using Entra ID Dynamic Groups and Regex

    July 01, 10:31 pm

    Leave a ReplyCancel reply

    This site uses Akismet to reduce spam. Learn how your comment data is processed.

    Sign Up

    Get email notifications for new posts.

    Author

    I’m Eswar Koneti ,a tech enthusiast, security advocate, and your guide to Microsoft Intune and Modern Device Management. My goal? To turn complex tech into actionable insights for a streamlined management experience. Let’s navigate this journey together!

    Support

    Awards

    Archives

    © Copyright 2009-2025 Eswar Koneti, All rights reserved.

    Type above and press Enter to search. Press Esc to cancel.