Kaffeeundcode
Script Library
PowerShell 01.06.2026

Script Workspace

Convert IntuneTime

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

93_Convert-IntuneTime.ps1

<#
.SYNOPSIS
    Konvertiert Intune-Zeitstempel.
    
.DESCRIPTION
    Wandelt UTC-Strings aus Graph in lokale Zeit um.
    
.NOTES
    File Name: 93_Convert-IntuneTime.ps1
    Author: Mattia Cirillo
    Version: 1.0
#>

param (
    [string]$TimeString
)

if ($TimeString) {
    [DateTime]$Date = $TimeString
    Write-Host "Local Time: $($Date.ToLocalTime())"
}