RESOLUTION 1
For On-Prem Target
1. Before copying the items, disable document parsing using
Add-PSSnapin Microsoft.SharePoint.PowerShell
$web = Get-SPWeb "http://sp-2019:2424/"
$web.ParserEnabled = $false
$web.Update()
$web.Dispose()
2. After the copy, re-enable document parsing using
Add-PSSnapin Microsoft.SharePoint.PowerShell
$web = Get-SPWeb "http://sp-2019:2424/"
$web.ParserEnabled = $True
$web.Update()
$web.Dispose()
RESOLUTION 2
For SharePoint Online
Contact Quest Support for assistance stripping this column from the List and Item XML when doing the copy.