Kaffeeundcode
Script Library
PowerShell 01.06.2026

Script Workspace

Get AppRegistrations

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

121_Get-AppRegistrations.ps1

<#
.SYNOPSIS
    Listet alle App Registrations auf.
    
.DESCRIPTION
    Ruft alle registrierten Anwendungen (Applications) im Tenant ab.
    Erfordert die Berechtigung 'Application.Read.All'.

.NOTES
    File Name: 121_Get-AppRegistrations.ps1
    Author: Mattia Cirillo
    Version: 1.0
#>

param()

Connect-MgGraph -Scopes "Application.Read.All"

Get-MgApplication -All | Select-Object DisplayName, AppId, CreatedDateTime