Kaffeeundcode
Script Library
PowerShell 01.06.2026

Script Workspace

Install IntuneModule

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

96_Install-IntuneModule.ps1

<#
.SYNOPSIS
    Installiert das Microsoft.Graph Modul.
    
.DESCRIPTION
    Lädt das SDK aus der PSGallery.
    
.NOTES
    File Name: 96_Install-IntuneModule.ps1
    Author: Mattia Cirillo
    Version: 1.0
#>

Install-Module Microsoft.Graph -Scope CurrentUser -Force
Write-Host "Modul installiert."