How to Check Intune License In MEM Admin Portal

In this post, you will learn how to Check Intune License In MEM Admin Portal. To view the number of free and used licenses on a Microsoft Intune subscription, You need to visit to tenant administration that provides all information.

There are multiple ways to find Microsoft Intune license details. You can quickly check the available option in Tenant details page in Endpoint Manager and the PowerShell method to extract the details.

The appropriate Microsoft Intune license is required if a user or device benefits directly or indirectly from the Microsoft Intune service, including access to the Microsoft Intune service through a Microsoft API.

You can check the Microsoft Intune Service release version of your Tenant, The Intune tenant status page shows many details including the current service release version and tenant details, learn how to check Intune service release version.

Patch My PC

You can give administrators access to Microsoft Endpoint Manager without requiring an Intune license, Intune supports up to 350 unlicensed admins per security group and only applies to direct members, Let’s check the option to Allow Unlicensed Admin To Access Intune.

How to Check Intune License In Microsoft Endpoint Manager Admin Center

  • Sign in to Microsoft Endpoint Manager admin center https://endpoint.microsoft.com.
  • Go to Tenant Administration and now select Tenant Status.
  • Tenant details provide information about your tenant name and location, your MDM Authority, and your tenants service release number. On the Tenant details tab, you will get the information for –
    • Total Licensed Users – <Assigned licensed users in Portal>
    • Total Intune Licenses – <Total available license in Portal>
Tenant Administration - How to Check Intune License In MEM Admin Portal
Tenant Administration – How to Check Intune License In MEM Admin Portal 1

Check Current Inune License Status Using PowerShell

To view the number of free and used licenses on a Microsoft Intune subscription, you can use the following steps to run PowerShell commands.

Open PowerShell as an administrator on a computer with the Azure Active Directory Module for Windows PowerShell.

The GetCredential cmdlet creates a credential object for a specified user name and password. You can use the credential object in security operations, the cmdlet prompts you to enter your username and password, have assigned the appropriate permission to access.

Adaptiva
$creds = Get-Credential
Check Current Inune License Status Using PowerShell 2
Enter Youe Credentails – Check Intune License Status Using PowerShell 2

You may receive the below error message, attempts to initiate a connection to Azure Active Directory. Ensure you have the following module installed –  

Connect-MsolService : The term ‘Connect-MsolService’ is not recognized as the name of a cmdlet, function, script file,or operable program.

# Install the MSOnline module
Install-Module MSOnline
# Add the MSOnline module to the PowerShell session
Import-Module MSOnline

You may prompted to confirm the installation and import of the MSOnline. Enter Y in all confirmation dialogs.

Installing Package MSOnline - Check Current Inune License Status Using PowerShell 3
Installing Package MSOnline – Check Intune License Status Using PowerShell 3

The Connect-MsolService cmdlet attempts to initiate a connection to Azure Active Directory. You must specify a credential, When the authentication window pops up, log in with the account you used to access the Intune Portal.

Connect-MsolService -Credential $creds
Sign in to your account – Check Current Inune License Status Using PowerShell 4
Sign in to your account – Check Intune License Status Using PowerShell 4

This command returns a list of SKUs, A list of the Account ID, the Active Units, and the Consumed Units will appear. This will also display any Microsoft Office 365 licenses on the subscription.

Here you can see the Enterprise Mobility (EMS) Total Licenses count is 5, and the Assigned Licenses (ConsumedUnits) count is also 5. The result will display all the available product Total, Assigned Licenses details.

Get-MsolAccountSku
How to Check Intune License In MEM Admin Portal 1
Total Licenses – Check Intune License Status Using PowerShell

If you want to check for any user whether they have licensed assigned. You can run Get-MsolUser cmdlet, It can be used to get an individual user, or list of users information. Here you can see the IsLicensed column return true that indicates the user is licensed.

Get-MsolUser -UserPrincipalName user@<TenantName>.onmicrosoft.com
How to Check Intune License In MEM Admin Portal 2
Validate User License – Check Intune License Status Using PowerShell

You can also validate the license status for the user, the following command provide you detailed status –

(Get-MsolUser -UserPrincipalName "user@<TenantName>.onmicrosoft.com").Licenses.ServiceStatus

Author

Leave a Comment

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