How to get system Intune Device from system iteself

Siripurapu Sanjeev Kumar 45 Reputation points
2024-01-08T08:45:36.3633333+00:00

How to get system Intune Device from system iteself, i know we can check from Intune, but i want user to see there intune device id

Microsoft Security Intune Other
{count} votes

2 answers

Sort by: Most helpful
  1. glebgreenspan 2,245 Reputation points
    2024-01-08T14:01:37.8033333+00:00

    Hello Siripurapu

    1. Open the Microsoft Intune Company Portal app on your device.   Alternatively, you can go to the "Settings" app and look for the "Company Portal" section.
    2. In the Company Portal app, sign in with your Intune account credentials.
    3. After signing in, navigate to the "Devices" section. It may be labeled as "My Devices" or similar.
    4. Here, you should see a list of devices associated with your Intune account. Find the device you're interested in and select it to view the device details.
    5. In the device details, you should find the Intune device ID or a similar identifier.
    0 comments No comments

  2. ZhoumingDuan-MSFT 17,165 Reputation points Microsoft External Staff
    2024-01-09T02:11:51.7666667+00:00

    @Siripurapu Sanjeev Kumar,Thanks for posting in Q&A.

    From your description, I know that you want to check Intune managed device information and Intune Device ID on device.

    Based on my testing, you can check Intune Device ID on targeted device via PowerShell with Graph.

    Here are some steps.

    1.Import Intune module and connect to Microsoft Graph with the following command.

          Import-Module Microsoft.Graph.Intune #import intune module  
          Update-MSGraphEnvironment -SchemaVersion beta #set schema version as beta  
          Connect-MSGraph  #connect to MS grasp
    

    2.After that, run the following command to get all the Intune managed device information.

          Get-IntuneManagedDevice
    

    3.Then you can see the device information, I find the value of "id" is the same as Intune Device ID.

    Hope above information can help. If there is any update, feel free to let me know.

    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


Your answer

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