Ein Upgrade von Windows 7 oder Windows 8 nach Windows 10 funktioniert ohne Probleme. Nach der Installation kann man mit nachfolgenden Power Shell Befehl die alte Installationsdateien entfernen.
$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
}