We have been seeing this on all the new OEM December 1709 builds from Lenovo on desktops and laptops.
If we see the problem, we are only left with Reset the PC. There is no recovery that we can find that solves this permanently, even the stuff suggested above.
- We are just running "Reset the PC" the OS in the Recovery section of Settings, then
- Remove practically everything from Appx using PowerShell except for the few legit applications.
For example:
$Applist = Get-AppXProvisionedPackage -online
$Applist2 = Get-AppxPackage
$Applist2 | WHere-Object {$_.name -like "*Lenovo*"} | Remove-AppxPackage
$Applist | WHere-Object {$_.packagename -like "*Lenovo*"} | Remove-AppxProvisionedPackage -online
- A GPO Registry setting:
HKLM\SOFTWARE\Policies\Microsoft\Windows\CloudContent
DisableWindowsConsumerFeatures
dword value 1
- Uninstall the Office 365 Home and Student.
Before going down my route, I recommend you test and look stuff up first so you don't brick a computer.
I am curious if anyone else has any other suggestions.