Commands › Exchange Online

Import-FilePlanProperty

Exchange Online ExchangeOnlineManagement Import-*

For more information, see Security & Compliance PowerShell. Use the Import-FilePlanProperty cmdlet to import file plan properties.

Quick start script

# Import-FilePlanProperty — 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
Import-FilePlanProperty -RawCsv <String> | Format-List

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

Syntax

Import-FilePlanProperty [-RawCsv] <String>
 [-Confirm]
 [-DomainController <Fqdn>]
 [-Force]
 [-ValidateOnly]
 [-WhatIf]
 [<CommonParameters>]

Parameters (6)

ParameterTypeRequiredWhat it controls
-RawCsv String yes The RawCsv parameter specifies the CSV file to import.
-Confirm SwitchParameter The Confirm switch specifies whether to show or hide the confirmation prompt. How this switch affects the cmdlet depends on whether the cmdlet requires confirmation before proceeding.
-DomainController Fqdn This parameter is reserved for internal Microsoft use.
-Force SwitchParameter The Force switch hides warning or confirmation messages. You don't need to specify a value with this switch.
-ValidateOnly SwitchParameter The ValidateOnly switch validates the CSV file without importing. You don't need to specify a value with this switch.
-WhatIf SwitchParameter The WhatIf switch doesn't work in Security & Compliance PowerShell.

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