After running an Upgrade from Windows 7 / 8.x to Windows 10 without issues, you have to delete the Old System files. You can simplify do this with this Power Shell command.
$path = Join-Path $env:SystemDrive -ChildPath "windows.old"
If(Test-Path -Path $path)
{
$regpath = "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VolumeCaches\Previous Installations"
New-ItemProperty -Path $regpath -Name "StateFlags1221" -PropertyType DWORD -Value 2 -Force | Out-Null
cleanmgr /SAGERUN:1221
}