Kaffeeundcode
Script Library
PowerShell 01.06.2026

Script Workspace

Get MyIntunePermissions

Review the purpose, inspect the code, then test it safely in your own tenant.

98_Get-MyIntunePermissions.ps1

<#
.SYNOPSIS
    Zeigt meine Berechtigungen im detail.
    
.DESCRIPTION
    Detaillierte Auflistung der Token-Scopes.
    Erfordert: User.Read.

.NOTES
    File Name: 98_Get-MyIntunePermissions.ps1
    Author: Mattia Cirillo
    Version: 1.0
#>

Connect-MgGraph
(Get-MgContext).Scopes | ForEach-Object { Write-Host "- $_" -ForegroundColor Cyan }