Kaffeeundcode
Script Library
PowerShell 01.06.2026

Script Workspace

Get IntunePowerShellVersion

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

84_Get-IntunePowerShellVersion.ps1

<#
.SYNOPSIS
    Zeigt Versionen der installierten Intune/Graph Module.
    
.DESCRIPTION
    Listet Versionen von Microsoft.Graph.* Modulen auf.
    Hilfreich für Troubleshooting bei Versionskonflikten.

.NOTES
    File Name: 84_Get-IntunePowerShellVersion.ps1
    Author: Mattia Cirillo
    Version: 1.0
#>

param()

Get-Module -Name "Microsoft.Graph*" -ListAvailable | Select-Object Name, Version