Public/Invoke-IntuneBackupDeviceHealthScript.ps1
function Invoke-IntuneBackupDeviceHealthScript { <# .SYNOPSIS Backup Intune Health Scripts (Remediation scripts) .DESCRIPTION Backup Intune Health Scripts (Remediation scripts) as JSON files per Health Script to the specified Path. .PARAMETER Path Path to store backup files .EXAMPLE Invoke-IntuneBackupDeviceHealthScript -Path "C:\temp" #> [CmdletBinding()] param( [Parameter(Mandatory = $true)] [string]$Path, [Parameter(Mandatory = $false)] [ValidateSet("v1.0", "Beta")] [string]$ApiVersion = "Beta" ) # Create folder if not exists if (-not (Test-Path "$Path\Device Health Scripts")) { $null = New-Item -Path "$Path\Device Health Scripts" -ItemType Directory } $healthScripts = Invoke-MSGraphRequest -Url "https://graph.microsoft.com/$ApiVersion/deviceManagement/deviceHealthScripts" | Select-Object -ExpandProperty Value foreach ($healthScript in $healthScripts) { $fileName = ($healthScript.displayName).Split([IO.Path]::GetInvalidFileNameChars()) -join '_' # Export the Health script profile $healthScript | ConvertTo-Json -Depth 100 | Out-File -LiteralPath "$path\Device Health Scripts\$fileName.json" # Create folder if not exists if (-not (Test-Path "$Path\Device Health Scripts\Script Content")) { $null = New-Item -Path "$Path\Device Health Scripts\Script Content" -ItemType Directory } $healthScriptObject = Invoke-MSGraphRequest -Url "https://graph.microsoft.com/$ApiVersion/deviceManagement/deviceHealthScripts/$($healthScript.id)" $healthScriptDetectionContent = [System.Text.Encoding]::UTF8.GetString([System.Convert]::FromBase64String($healthScriptObject.detectionScriptContent)) $healthScriptDetectionContent | Out-File -LiteralPath "$path\Device Health Scripts\Script Content\$fileName`_detection.ps1" $healthScriptRemediationContent = [System.Text.Encoding]::UTF8.GetString([System.Convert]::FromBase64String($healthScriptObject.remediationScriptContent)) $healthScriptRemediationContent | Out-File -LiteralPath "$path\Device Health Scripts\Script Content\$fileName`_remediation.ps1" [PSCustomObject]@{ "Action" = "Backup" "Type" = "Device Health Scripts" "Name" = $healthScript.displayName "Path" = "Device Health Scripts\$fileName.json" } } } |