Fix Intune Error 80180003: This User Is Not Authorized to Enroll
Intune error 80180003 usually appears when a Windows enrollment attempt reaches Microsoft cloud services, but the tenant blocks the user or device before management can finish. The user-facing text is blunt: This user is not authorized to enroll. In other cases, the same failure shows up as 0x801c0003. Microsoft’s troubleshooting guidance points to a smaller set of root causes than most admins expect, which means you can usually fix this without rebuilding the device.
The main trap is treating 80180003 like a generic Company Portal problem. In practice, this error is commonly tied to one of four admin-side conditions: the user is not licensed correctly, the user already hit the Intune device limit, the device is running Windows Home, or Microsoft Entra ID is configured to stop users from joining devices. If you start with those checks, you can often close the incident in one pass.
This guide is for Desktop Engineers, Intune admins, and endpoint teams troubleshooting Windows enrollment during OOBE, Access work or school, Company Portal, or Microsoft Entra join.
What error 80180003 and 0x801c0003 actually mean
Microsoft documents both of these messages for the same enrollment family:
0x801c0003: This user is not authorized to enroll80180003: Something went wrong. This user is not authorized to enroll
That wording sounds like an identity outage, but Microsoft’s own article maps it to several very specific checks:
- The user doesn’t have a valid Intune license.
- The user already reached the configured Intune device limit.
- The device is on Windows Home, which can’t join Microsoft Entra ID or enroll into Intune the same way Pro and Enterprise can.
- The tenant setting Users may join devices to Microsoft Entra ID is too restrictive.
Those are useful clues because they narrow the investigation fast. 80180003 is usually not the code you get when Win32 app deployment is broken, the MDM certificate expired, or the enrollment service is generally down. It is more often a control-plane issue around entitlement, supported edition, or join policy.
Fast triage checklist
Use this order before you wipe the laptop or start deleting device objects:
- Capture the exact code and user-facing text. Confirm it is
80180003or0x801c0003. - Identify the enrollment path: OOBE, Join this device to Azure Active Directory, Access work or school, Group Policy auto-enrollment, or Company Portal.
- Confirm the affected user has an Intune-eligible license assigned.
- Check how many devices the user already has enrolled in Intune.
- Verify the Windows edition on the failing device.
- Review Microsoft Entra device settings and confirm users are allowed to join devices.
- If the device is BYOD, confirm the enrollment method matches what you want to manage: full device management versus account-only management.
- If the issue remains unclear, collect device enrollment diagnostics and review the MDM admin log.
This order matters because the first four checks account for most of the admin mistakes behind the error.
Fix 1: Confirm the user really has the right Intune license
Microsoft’s Intune enrollment troubleshooting guidance explicitly says users need the correct license for the version of the Intune service in use. That sounds obvious, but it still causes plenty of failed pilots because admins test with accounts that can access the portal but are not licensed for enrollment.
Practical checks:
- Open the user in Microsoft 365 admin center.
- Confirm the assigned product actually includes Intune.
- If you use group-based licensing, verify the group assignment completed and the relevant service plan is enabled.
- If the user was just licensed, wait a little before retesting.
Do not assume that because an admin account can sign in to Intune, a pilot user can enroll a Windows device. Microsoft specifically calls out cases where the user is missing the necessary license or has the wrong license type for the configured MDM authority.
A quick comparison helps here: test with one known-good licensed user. If the same device enrolls for that user but fails for the affected one, you probably have a user entitlement problem, not a device problem.
Fix 2: Check whether the user hit the Intune device limit
This is one of the most common reasons 80180003 looks mysterious when it really is not. Microsoft says a user can be blocked once the number of enrolled devices reaches the Intune device limit restriction.
Review it from both sides:
Tenant-side setting
In Intune admin center, go to:
Devices > Enrollment restrictions > Device limit restrictions
Check the value applied to the user. Microsoft’s current restriction model allows a device limit from 1 to 15.
User-side reality
Count how many active enrolled devices the user already owns in Intune. If the user has reached the allowed number, the next Windows enrollment can fail even when licensing and join settings are otherwise correct.
This happens a lot in real enterprise environments when:
- Pilot users have enrolled multiple lab devices.
- Old devices were never cleaned up.
- Reimaged devices stacked up under the same user.
- Shared test accounts are used across many enrollment attempts.
If the user is at the cap, you have three clean options:
- Remove stale enrolled devices that are no longer in service.
- Increase the applicable Intune device limit restriction.
- Use a more appropriate method for shared fleet enrollment, such as a device-focused rollout design instead of repeated user-driven tests.
If your device onboarding method is Group Policy or Microsoft Entra joined bulk-style corporate enrollment, be careful not to assume the same device-limit behavior applies everywhere in the same way. Microsoft notes that some Windows shared-device enrollment scenarios do not apply device-limit restrictions the same way user-driven enrollments do.
Fix 3: Verify the device is not running Windows Home
Microsoft’s troubleshooting article is direct on this point: Windows Home is not supported for the Microsoft Entra join and Intune enrollment path used here. If the device is on Home edition, the enrollment attempt can fail with 80180003 even though the tenant is configured correctly.
Check the edition on the endpoint:
Get-ComputerInfo | Select-Object WindowsProductName, OsVersion
Or from the GUI:
Settings > System > About
If the device reports Windows Home, stop chasing Intune settings. Upgrade the edition to Pro, Enterprise, or another supported edition first. This is a high-value check because it prevents wasted time on Entra and MDM troubleshooting when the OS edition is the real blocker.
Fix 4: Review Microsoft Entra device join settings
Microsoft’s article for this error specifically says enrollment can fail if Users may join devices to Microsoft Entra ID is set to None. That setting blocks new users from joining devices, so Intune enrollment never finishes.
Check this in Microsoft Entra admin center:
Devices > Device settings > Users may join devices to Microsoft Entra ID
For most enterprise user-driven Windows enrollment scenarios, the setting should be All or a scoped equivalent that includes the affected users. If the user is outside the allowed scope, the device can authenticate but fail at the join and enrollment step.
This is especially important during staged rollouts. A test device can look ready, the user can be licensed, and the Company Portal app can be current, but the enrollment still fails because the pilot user was never added to the allowed join population.
If you make a change here, do not retest in the same second. Let the setting apply, then retry with one known-good pilot user.
Fix 5: Make sure the enrollment method matches the ownership scenario
Microsoft’s Windows enrollment guidance separates registered devices from joined devices, and that distinction matters when the user says, “I only wanted email access” or “this is my personal laptop.”
Key points from Microsoft’s guidance:
- Microsoft Entra joined devices are treated as fully managed devices.
- Registered devices are more aligned with lighter BYOD or account-focused access patterns.
- On Windows BYOD, using the wrong join path can create a support issue that looks like an Intune outage.
For example:
- If the user selects Join this device to Azure Active Directory, the device becomes joined and fully managed.
- If the business only intended lighter account access on a personal device, the workflow might need to be adjusted instead of forcing full MDM enrollment.
- If the environment relies on user-entered server discovery or CNAME-based discovery for some paths, make sure the user is following the intended enrollment instructions.
This does not mean 80180003 is caused only by wrong user clicks. It means the enrollment path should match the device ownership and management design before you blame the platform.
Step-by-step remediation workflow
When a service desk ticket lands with 80180003, use this sequence:
1. Capture the scenario
Record:
- User UPN
- Device serial number
- Windows edition
- Ownership type: corporate or personal
- Enrollment path used
- Exact error text and code
2. Validate the user
Check the user’s assigned licensing and confirm the user is allowed to join devices in Microsoft Entra ID.
3. Review enrollment restrictions
Open the Intune restriction applied to the user and compare it with the number of devices already enrolled.
4. Validate the endpoint edition
If the device is on Windows Home, correct that before doing deeper MDM work.
5. Collect device-side diagnostics if needed
If the tenant-side checks look clean, collect an enrollment diagnostics package:
mdmdiagnosticstool.exe -area "DeviceEnrollment" -zip "C:\Users\Public\Documents\MDMDiagReport.zip"
Then inspect:
Applications and Services Logs > Microsoft > Windows > DeviceManagement-Enterprise-Diagnostics-Provider > Admin
Microsoft’s Windows enrollment troubleshooting guidance points to this log location for device enrollment problems. Use it to line up the failure timestamp with the user action and see whether the join was blocked before policy delivery even began.
6. Retest with one clean pilot user
After fixing the root cause, retest with one user who is definitely licensed, in scope for device join, and below the device limit. If that succeeds, you can safely move back to the original user or rollout group.
Common admin mistakes behind 80180003
A few patterns show up repeatedly in enterprise support:
“The user can sign in, so licensing must be fine”
Not enough. Authentication and Intune enrollment entitlement are not the same thing.
“The device is broken because it worked for another account last month”
Maybe not. The user might now be over the device cap, out of scope for join, or using a different license assignment.
“We only changed a Microsoft Entra setting, not Intune”
That can still cause 80180003. Microsoft Entra join settings directly affect the Windows enrollment path.
“It is a Windows problem, so edition should not matter”
It matters here. Home edition is an explicit blocker for the supported Intune enrollment path in Microsoft’s guidance.
Limitations and caveats
80180003 does not tell you which one of the allowed-enrollment checks failed. It tells you the user or device was not permitted to complete the process. You still need to prove whether the real block was licensing, device limit, unsupported edition, or Microsoft Entra join policy.
Also be careful with stale device data. If the user has many retired or reimaged endpoints still assigned in Intune, the visible problem may be the device limit rather than the new device itself. Clean up only what is clearly stale.
Finally, if you are troubleshooting BYOD Windows enrollment, be clear about whether the business wants a fully managed device or just organizational access for the work account. The wrong workflow creates avoidable escalation noise.
Prevention checklist
Add these checks to your standard enrollment runbook:
- Keep one known-good licensed pilot user for validation.
- Review Intune device limits before large pilot waves.
- Clean up stale lab and reimage devices tied to test users.
- Standardize on supported Windows editions for enrollment testing.
- Document the intended user workflow for corporate devices versus BYOD devices.
- Audit Microsoft Entra join settings after tenant policy changes.
Conclusion
Intune error 80180003 is usually a permissions and readiness problem, not a random Windows failure. Microsoft’s own troubleshooting path is clear: verify the user has the right license, verify the user is not blocked by the device limit, verify the endpoint is not on Windows Home, and verify Microsoft Entra allows the user to join devices.
If you run those checks in order, 80180003 stops being a vague enrollment error and becomes a short admin-side remediation task. Start with entitlement and tenant policy. Only go deeper into device diagnostics after those basics are proven clean.