Wednesday, September 16, 2026
HomePowershellTips on how to checklist all Intune Gadgets (Mannequin, Proprietor …) –...

Tips on how to checklist all Intune Gadgets (Mannequin, Proprietor …) – SID-500.COM


Microsoft 365

On this weblog submit, I’ll present you the right way to retrieve all Intune gadgets and show key attributes such because the proprietor, machine mannequin, and different vital data.
Simply comply with the steps under to put in the Graph Intune module and checklist all gadgets.

# Intune PowerShell module set up
Set up-Module -Title Microsoft.Graph.Intune -Pressure -AllowClobber

# Intune PowerShell module import
Import-Module -Title Microsoft.Graph.Intune

# Intune PowerShell module connection
Join-MSGraph

# Intune PowerShell Instructions
# Get the checklist of all of the gadgets within the tenant
Get-IntuneManagedDevice

# Get the checklist of all of the gadgets within the tenant with the machine title
Get-IntuneManagedDevice | Choose-Object -Property DeviceName

# Get the checklist of all of the gadgets within the tenant with the machine title and the machine id
Get-IntuneManagedDevice | Choose-Object -Property DeviceName,DeviceId

# Get the checklist of all of the gadgets within the tenant with the machine title and the machine id and the machine proprietor
Get-IntuneManagedDevice | Choose-Object -Property DeviceName,DeviceId,DeviceOwner

# Get the checklist of all of the gadgets within the tenant with the machine title and the machine id and the machine proprietor and the machine mannequin
Get-IntuneManagedDevice | Choose-Object -Property DeviceName,DeviceId,DeviceOwner,DeviceModel

# Get the checklist of all of the gadgets within the tenant with the machine title and the machine id and the machine proprietor and the machine mannequin and the machine producer
Get-IntuneManagedDevice | Choose-Object -Property DeviceName,DeviceId,DeviceOwner,DeviceModel,DeviceManufacturer

Hope this was useful.

Unknown's avatar

Printed by Patrick Gruenauer

Microsoft MVP on PowerShell & Microsoft 365, IT-Coach, IT-Advisor, MCSE: Cloud Platform and Infrastructure, Cisco Licensed Academy Teacher.

Previous articleChallenge #639
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments