Query Details

Device Showi OS Deviceswith Jailbreak

Query

// Jailbroken devices in Intune
IntuneDevices 
| where OS == "iOS/iPadOS"
| where Ownership == "Corporate"
| where JailBroken == "True"
| project JailBroken, DeviceName, UPN

Explanation

This query is searching within Intune, a Microsoft service for managing mobile devices, for devices that are owned by the company (Corporate), use the iOS or iPadOS operating system, and have been jailbroken (a process that removes software restrictions imposed by Apple on iOS). The query then displays whether the device has been jailbroken, the name of the device, and the User Principal Name (UPN), which is a user's identification for logging in.

Details

Ugur Koc profile picture

Ugur Koc

Released: July 31, 2022

Tables

IntuneDevices

Keywords

Jailbroken,Devices,Intune,OS,iOS/iPadOS,Ownership,Corporate,DeviceName,UPN

Operators

whereproject

Actions