Kaffeeundcode
Script Library
PowerShell 11.12.2025

Script Workspace

Install IntuneModule

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

97_Install-IntuneModule.ps1

<#
.SYNOPSIS
    Installs and Updates MS Graph Modules.
    
.DESCRIPTION
    Ensures environment is ready (Microsoft.Graph.Intune).
    
.NOTES
    File Name: 97_Install-IntuneModule.ps1
    Author: Mattia Cirillo
    Version: 1.0
#>

Write-Host "Installing Microsoft.Graph module..."
Install-Module Microsoft.Graph -Scope CurrentUser -Force -AllowClobber
Write-Host "Updating..."
Update-Module Microsoft.Graph
Write-Host "Ready." -ForegroundColor Green