Image windows 10 Upgrade
-
Hi
I have to upgrade windows 7 to windows 10 (about 100 PC)
I can’t sysprep an upgrade so is there a way to image windows 10 upgrade and use it to other pc model ? (Dell 3020, Dell 3010)
Thanks
-
I don’t think there is.
This is because the way it’s licensed is completely different than when you do a “fresh install” of Windows 10. Even on upgrades from OEM systems.
-
@davido38 Of course, there’s also some potential.
Maybe try the info found here:
http://www.harrycaskey.com/how-to-run-sysprep-on-an-upgraded-operating-system/ -
it works
i have to uninstall some store applications (installed with the upgrade) with this srcipt :
Remove Windows Store apps in Windows 8
Thanks a lot.
-
@davido38 FYI on that script - it will only remove the apps for the logged in user. There are two different AppX commands for removing from the current user’s profile and removing the app from the machine so it’s never reinstalled for any user.
Remove-AppXPackage = removes app for current user
Remove-AppXProvisionedPackage -Online = removing the app from the machine so it’s not reinstalled
I use these two commands before sysprepping:
Get-AppXPackage -AllUsers | Remove-AppXPackage
Get-AppXProvisionedPackage -Online | Remove-AppXProvisionedPackage -Online