W10: Main Way To Remove Apps
Description:
So I Have my Set-Template script that I use to provision OEM machines to a default “standard”. Here is a way to run it once on the default profile and not have to worry about new users getting those pesky cloud apps.
To Resolve:
-
Run my script linked in description.
-
Then just run:
1 2 3 4 5
reg load HKU\Default_User C:\Users\Default\NTUSER.DAT Set-ItemProperty -Path Registry::HKU\Default_User\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager -Name SystemPaneSuggestionsEnabled -Value 0 Set-ItemProperty -Path Registry::HKU\Default_User\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager -Name PreInstalledAppsEnabled -Value 0 Set-ItemProperty -Path Registry::HKU\Default_User\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager -Name OemPreInstalledAppsEnabled -Value 0 reg unload HKU\Default_User
-
I have not tested this but the idea is that my template will remove all apps from the current user and this PS block will stop Windows from loading the crap apps when a new user logs in. This should work in Audit mode during OOBE.
Comments