I had these long discussions, nuhi prefers using canonical feature names (as established by MSFT). Whereas I say, users recognize "Widgets" instead of "Web Experience". So the confusion continues... we need a feature -> picture guide.
reasonable, i hope we get a component for teams/chat tooI had these long discussions, nuhi prefers using canonical feature names (as established by MSFT). Whereas I say, users recognize "Widgets" instead of "Web Experience". So the confusion continues... we need a feature -> picture guide.
potential tweak? stop w11 automatically connecting to wifi network.
goggle(sic)-fu first. if you cant find an answer then post as a last resort. less work for nuhi and or someone creating a guide.
just incase, have the "aka popular name" in a Components - Notes or like this if it doesnt already exist.
Code:Web Experience(Widgets)
i can usually find stuff using thoseyou can always do it by wildcards and variables. not something impossible tho..
figured as much, post and ask is the only way then for now. i know some people have little to zero goggle-fu(or are just plain lazybut others i can't even find on google.
Let's see if I understand ...I already send it to nuhi a week ago, and ntlite already sets some regs but maybe you guys needs manually for new apps untill ntlite adds support to it
How to keep apps removed from Windows from returning during a feature update
![]()
Keep removed apps from returning during an update
When you remove provisioned apps from devices, this article explains how to keep those apps from returning during an update.docs.microsoft.com
"When you remove a provisioned app, we create a registry key that tells Windows not to reinstall or update that app the next time Windows is updated. If the computer isn't online when you deprovision the app, then we don't create that registry key."
Create registry keys for deprovisioned apps
Use the following steps to create a registry key:
You're now ready to update your computer. After the update, check the list of apps in the computer to confirm the removed apps are still gone.
- Identify any provisioned apps you want removed. Record the package name for each app.
- Create a .reg file to generate a registry key for each app. Use this list of Windows 10, version 1709 registry keys as your starting point.
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Appx\AppxAllUserStore\Deprovisioned\Microsoft.BingWeather_8wekyb3d8bbwe]
- Double-click the .reg file to create the registry keys. You can see the new keys in HKLM\path-to-reg-keys.
idk if this will work for newer windows10 builds or windows11 but i assume they work in same logic. and as i said ntlilte already sets for some known apps. i attached defaultly installed modern apps list. so that you can create reg file from it. extracted from fully updated latest windows 11
Tested;
Installed 20H2 Windows 10 vanilla
removed apps by powershell command (it also removed microsoft store)
registered deprovisioned registery
restarted
updated system by running windows update
aaaaaand apps were not reinstalled.
i assume normally updating an old windows 10 build would makes apps return since its a big update? so its a success?
Registry Hive | HKEY_LOCAL_MACHINE |
Registry Path | SOFTWARE\Policies\Microsoft\Dsh |
Value Name | AllowNewsAndInterests |
Value Type | REG_DWORD |
Enabled Value | 1 |
Disabled Value | 0 |
Widgets under its original name News & Interests
@echo off
:: Remove Chat
Reg Add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v TaskbarMn /t REG_DWORD /d 0 /f >NUL 2>&1
Reg Add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Windows Chat" /v ChatIcon /t REG_DWORD /d 3 /f >NUL 2>&1
:: Remove Widget
Reg Add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v TaskbarDa /t REG_DWORD /d 0 /f >NUL 2>&1
Reg Add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Dsh" /v AllowNewsAndInterests /t REG_DWORD /d 0 /f >NUL 2>&1
Reg Add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Windows Feeds" /v EnableFeeds /t REG_DWORD /d 0 /f >NUL 2>&1
exit