Share via

Am I enrolled in Extended Security Updates ?

George Sinkinson 115 Reputation points
2025-09-26T17:36:31.5+00:00

Windows 10 Pro 22H2 19045.6396
Currently up to date
Signed in with Microsoft account

How do I confirm that I'm already enrolled in Extended Security Updates through October 13, 2026 ?

I followed the AI response of:

To see if you're enrolled in Extended Security Updates (ESU), open an elevated Command Prompt and run slmgr.vbs /dlv. In the output, look for the specific ESU program name and confirm the License Status is "Licensed".

When I run slmgr.vbs /dlv in an elevated Command Prompt, I get:
image (11)

Does this mean I'm enrolled or not?

I am NOT seeing an option to enroll in the Extended Security Updates Windows Update window.

I do remember seeing somewhere that systems with settings managed by an organization are excluded.

The Windows Update window shows:

*Some settings are managed by your organization

Policies set on my device show Source: Administrator and Type: Group Policy

Download the updates automatically and notify when they are ready to be installed

Get updates for other Microsoft products

Set Automatic Update options

Target release version for feature updates
This my home computer, so I do not know where the 'organization' reference is coming from.

I do remember setting a release version a long time ago, but that's it. My registry entry for the last entry shows:  
![User's image](/api/attachments/6049cf6f-3145-4e54-ae70-f85ef41b287e?platform=QnA)

What do I need to do to get the Enroll prompt so that I can use my Reward Points ?


Windows for home | Windows 10 | Extended Security Update (ESU)

5 answers

Sort by: Most helpful
  1. Jerry F 21 Reputation points
    2025-09-30T11:39:52.0733333+00:00

    Hi George

    1. I also had a situation where Windows Update page showed my PC was controlled by "an organization". It was because of a group policy setting i previously set to pause updates 7 days. Don't know if any GPO or only some cause that problem. But I removed all GPO settings (i only had a couple), rebooted and was offered the ESU program
    2. There's a vertical column of text on the Settings->Windows Update page. The very first line in mine says "Your PC is enrolled to get Extended Security Updates"
    3. There's also a powershell script (script highlighted below). It will also tell you if you're enrolled. Meaning of its output:
      • Enrolled (DeviceEnrolled) or Enrolled (Microsoft Account) → you’re enrolled for this user.
      • Eligible (not enrolled) → you can enroll from Settings → Update & Security → Windows Update (look for the ESU card/button).
      • Ineligible/Unknown/No Consumer ESU key → not enrolled on this account (or the device hasn’t checked ESU yet).

    # Save as Check-ConsumerESU.ps1 and run in a normal (non-admin) PowerShell

    # 1) Sanity: must be Windows 10 22H2

    $cv = Get-ItemProperty 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion'

    $displayVersion = $cv.DisplayVersion

    if ($displayVersion -ne '22H2') {

    Write-Host "Windows 10 $displayVersion detected. Consumer ESU only applies to Windows 10 22H2." -ForegroundColor Yellow

    }

    # 2) Read the Consumer ESU enrollment flag for the *current* signed-in user

    $key = 'HKCU:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Windows\ConsumerESU'

    $props = Get-ItemProperty -Path $key -ErrorAction SilentlyContinue

    if (-not $props) {

    Write-Host "No Consumer ESU key found for this user. Not enrolled (or never checked ESU in Windows Update)." -ForegroundColor Red

    return

    }

    $map = @{

    0 = 'Unknown'

    1 = 'Ineligible'

    2 = 'Eligible (not enrolled)'

    3 = 'Enrolled (DeviceEnrolled)'

    5 = 'Enrolled (Microsoft Account)'

    }

    $statusNum = $props.ESUEligibility

    $statusText = $map[$statusNum]

    if (-not $statusText) { $statusText = "Unrecognized value ($statusNum)" }

    $result = $props.ESUEligibilityResult # extra context string when not enrolled/eligible

    $lastChecked = $props.LastCheckTime # may exist on some builds

    [PSCustomObject]@{

    Windows10Version = $displayVersion

    ESUStatusCode = $statusNum

    ESUStatusText = $statusText

    ESUEligibilityResult = $result

    LastChecked = $lastChecked

    } | Format-List

    1 person found this answer helpful.
    0 comments No comments

  2. Edwin Bajang 0 Reputation points
    2026-02-21T14:06:43.49+00:00

    Download the updates automatically and notify when they are ready to be installed

    Get updates for other Microsoft products

    Set Automatic Update options

    Target release version for feature updates

    This my home computer, so I do not know where the 'organization' reference is coming from.

    I do remember setting a release version a long time ago, but that's it. My registry entry for the last entry shows:

    User's image

    What do I need to do to get the Enroll prompt so that I can use my Reward Points ?

    0 comments No comments

  3. Jim Hobbs 0 Reputation points
    2025-11-20T12:02:42.9333333+00:00

    This might help you. You need to be using a windows profile that is directly signed in using microsoft account in order for enrollment to work. I had a profile that was local and signed into my microsoft account and that failed to enroll but when i created a new profile using my microsoft account that worked perfectly. Keep in mind you can only enroll 10 devices in ESU per microsoft account.

    0 comments No comments

  4. Daniel Ortiz 0 Reputation points
    2025-10-10T23:28:25.9633333+00:00

    I'M WITHOUT UNDERSTANDING WEATHER I AM ENROLLED WITH WINDOWS 10 OR NO. AM IN THE DARK IN MY UNDERSTANING. HELP!

    0 comments No comments

  5. Paulo GM 63,060 Reputation points Independent Advisor
    2025-09-26T19:19:59.7866667+00:00

    Hi George,

    The ESU status should be displayed on Windows Update page, but since you haven't enrolled yet, it is likely not registered yet. The *Some settings are managed by your organization that appear on your Windows Update does not mean you are part of the organization, it just means you have a policy from a work or school account applied on your device. To remove that, you should perform the steps from this page. Once the message is gone, run Windows Update to see if there are any pending updates. If none appear and the Enroll now option still doesn’t show, you can follow the steps here to force it.

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.