Microsoft Enterprise Mobility Suite Tips

Enterprise Mobility stuff worth sharing -- by Pieter Wigleven (Technical Solution Professional MSFT)

How many Intune enabled users do I have?

How many Intune enabled users do I have?

  • Comments 2
  • Likes

When using ConfigMgr+Intune also known as UDM – it might be tricky to understand how many users are Intune enabled.

Use the following SQL query to get the total number:

select count(CloudUserID) from User_disc where CloudUserID IS NOT NULL

image

In case you want to know which specific users, try this:

select user_name0,cloudUserID from User_disc where clouduserID IS NOT NULL

image

Please consider leaving a reply in case this post helped you!

Comments
  • Thanks Peter for providing some insights!

Your comment has been posted.   Close
Thank you, your comment requires moderation so it may take a while to appear.   Close
Leave a Comment