Kaffeeundcode
Script Library
PowerShell 01.06.2026

Script Workspace

Remediate BitLockerResume

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

060_Remediate-BitLockerResume.ps1

<#
.SYNOPSIS
    Aktiviert (Resumed) den BitLocker-Schutz wieder.
    (Intune Remediation Script)

.DESCRIPTION
    Führt Resume-BitLocker aus.

.NOTES
    File Name: 060_Remediate-BitLockerResume.ps1
    Author: Mattia Cirillo
    Version: 1.0
#>

try {
    Write-Host "Aktiviere BitLocker..."
    Resume-BitLocker -MountPoint "C:" -ErrorAction Stop
    Write-Host "BitLocker aktiviert."

} catch {
    Write-Error "Fehler: $_"
    exit 1
}