Brian Besand, correct me if I am wrong.
Ivan54, what we did was in the OneDrive Admin panel under Storage we changed Days to Retain files in OneDrive after a user account is marked for deletion to 3650 or 10yrs. There is also a powershell command to adjust the SharePoint clean-up job to whatever you want. We also changed this to 10yrs. Fill in the username and password section but has worked great so far. #Connects to Sharepoint Online $Username = "" $Password = ConvertTo-SecureString '' -AsPlainText -Force $orgName="iontradingcom" #$userCredential = Get-Credential -UserName $Username -Password $Password $UserCredential = New-Object System.Management.Automation.PSCredential $Username, $Password Connect-SPOService -Url https://$orgName-admin.sharepoint.com -Credential $userCredential #Gets SHP tesettings #Get-SPOTenant #Tells SHP not to clean up deleted accounts for 10yrs. Set-SPOTenant -OrphanedPersonalSitesRetentionPeriod 3650