Commands › SharePoint Online

Stop-SPOUserAndContentMove

SharePoint Online Microsoft.Online.SharePoint.PowerShell Stop-*

In a Multi-Geo company, stops the ability to move a user's content related objects in a SharePoint Online Tenant

Quick start script

# Stop-SPOUserAndContentMove — quick start (serv365.ai)
# 1. Connect (app-only shown; interactive: omit the certificate parameters)
Connect-SPOService -Url https://$org-admin.sharepoint.com

# 2. Run and inspect
Stop-SPOUserAndContentMove -UserPrincipalName <String> | Format-List

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

Syntax

Stop-SPOUserAndContentMove [-UserPrincipalName] <String> [<CommonParameters>]

Parameters (1)

ParameterTypeRequiredWhat it controls
-UserPrincipalName String yes UserPrincipalName or UPN defined for the specific user on the SPO tenant

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