Skip to content

Get-IntuneRemediationSummary

SYNOPSIS

Retrieves remediation summary statistics for all Intune proactive remediations.

SYNTAX

__AllParameterSets

Get-IntuneRemediationSummary [<CommonParameters>]

ALIASES

This cmdlet has the following aliases, {{Insert list of aliases}}

DESCRIPTION

Queries Microsoft Graph (beta) for all device health scripts (proactive remediations) and returns one summary row per remediation, including status and key issue counters.

Requires an authenticated Graph session with appropriate scopes.

Scopes (minimum): - DeviceManagementConfiguration.Read.All

EXAMPLES

EXAMPLE 1

Connect-MgGraph -Scopes "DeviceManagementConfiguration.Read.All" Get-IntuneRemediationSummary

Returns one row per remediation with status and issue/remediation counters.

PARAMETERS

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

OUTPUTS

PSCustomObject with the following properties

  • Name (string)
  • Status (string)
  • WithoutIssues (int)
  • WithIssues (int)
  • IssueFixed (int)
  • IssueRecurred (int)
  • TotalRemediated (int)

{{ Fill in the Description }}

System.Management.Automation.PSObject

{{ Fill in the Description }}

NOTES

Author: FHN & GitHub Copilot - Uses /beta Graph endpoints.

{{ Fill in the related links here }}