Commands › Exchange Online

Get-SensitiveInformationScan

Exchange Online ExchangeOnlineManagement Get-*

For more information, see Security & Compliance PowerShell. Use the Get-SensitiveInformationScan cmdlet to view the properties of sensitive information scans.

Quick start script

# Get-SensitiveInformationScan — quick start (serv365.ai)
# 1. Connect (app-only shown; interactive: omit the certificate parameters)
Connect-ExchangeOnline -CertificateThumbprint $thumb -AppId $appId -Organization $org

# 2. Run and inspect
Get-SensitiveInformationScan | Format-List

# 3. Export for evidence / drift tracking
Get-SensitiveInformationScan | Export-Clixml .\SensitiveInformationScan-$(Get-Date -Format yyyyMMdd).xml

Syntax

Get-SensitiveInformationScan [[-Identity] <PolicyIdParameter>]
 [-IncludeImpactAssessment <Boolean>]
 [-IncludeProgressForAllActiveScans <Boolean>]
 [-IncludeScanProgress <Boolean>]
 [<CommonParameters>]

Parameters (4)

ParameterTypeRequiredWhat it controls
-Identity PolicyIdParameter The Identity parameter specifies the sensitive information scan that you want to view. You can use any value that uniquely identifies the scan. For example:
-IncludeImpactAssessment Boolean The IncludeImpactAssessment parameter specifies whether to refresh the latest scan status during the estimation stage. Valid values are:
-IncludeProgressForAllActiveScans Boolean This parameter is reserved for internal Microsoft use.
-IncludeScanProgress Boolean The IncludeScanProgress parameter specifies whether to refresh the latest scan status during the classification phase. Valid values are:

Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.