Hi
I have been searching around but cannot find an answer on my issue so maybe someone here can help me.
The problem is that when I try to migrate a Sharepoint on-prem versioning enabled document library to a test library in Office365 I get an error during ConvertTo-SPOMigrationTargetedPackage. The error is:
VERBOSE: [25.08.2016 10:36:25] Error Fatal exception found: Missing FileValue attribute on File node. -
ConvertTo-SPOMigrationTargetedPackage : Missing FileValue attribute on File node.
If I look at the manifest.xml of the exported library then yes for multiple version files there is no FileValue entry for the root level
<File Url="Shared Documents/Technical scoping document.docx" Id="15fb4f96-d39e-4cf3-97e1-df12918d238d" ParentWebId="e4fde941-5dc7-498d-af05-100a007bbb3c" ParentWebUrl="/sites/officemigration" Name="Technical scoping document.docx" ListItemIntId="7" ListId="0cc353a3-be33-49b7-8fa4-dad10fa59710" ParentId="00d53eeb-8a2e-48f1-bbc2-f39cdfeee1fd" TimeCreated="2016-08-08T07:53:21" TimeLastModified="2016-08-25T08:20:53" Version="2.0">
But for version there is FileValue
<File Url="sites/officemigration/Shared Documents/Technical scoping document.docx" ParentWebId="e4fde941-5dc7-498d-af05-100a007bbb3c" Name="Technical scoping document.docx" Id="15fb4f96-d39e-4cf3-97e1-df12918d238d" Version="1.0" TimeCreated="2016-08-08T07:53:21" FileValue="0000000B.dat" Author="13" ModifiedBy="13">
I tried to cheat the tool and add manually FileValue to root level also but then the import job seemed to fail or atleast nothing was migrated to my Office 365 library.
If I export my on-prem library with only last version then everything is OK and migration works without problems.
Does anyone know if ConvertTo-SPOMigrationTargetedPackage even supports versions? Or only way to migrate with Microsofts own solution is to migrate only one version of each file?