最終のデルタ / 増分移行を実行する前に、データの一貫性を確保するため、移行中に移行元でデータが変更・作成されないことを確認してください。
• SharePoint Online を読み取り専用に設定するには、PowerShell を使用して以下のスクリプトを実行してください。
#Set Parameters
$AdminCenterURL="https://contoso-admin.sharepoint.com"
$SiteURL = "https://contoso-my.sharepoint.com/personal/admin_contoso_onmicrosoft_com"
#Connect to SharePoint Online
Connect-SPOService -Url $AdminCenterURL -Credential (Get-Credential)
#PowerShell to set onedrive for business site to read only
Set-SPOSite -Identity $SiteURL -LockState ReadOnly
• SharePoint Online のロックを解除するには、PowerShell を使用して以下のスクリプトを実行してください。
#Unlock site from read only mode
Set-SPOSite -Identity $SiteURL -LockState Unlock