chekmate1984 Posted June 12, 2024 Posted June 12, 2024 Hi all We have been deploying windows 11 to manchines and noticed few things that worked in windows 10 doesnt work in windows 11 1) Users unable to right click task bar 2) The icon on left tha shows weather, ftse, and when click shows news etc Anyone tried to remove the above via gpo? I have gone through gpo but just cant locate!
Jaan Posted June 12, 2024 Posted June 12, 2024 The lastest version? I fell foul to this; https://www.edugeek.net/forums/windows-11/237229-systray-icon-overflow-gpo.html
chekmate1984 Posted June 13, 2024 Author Posted June 13, 2024 Thanks i installed the GPo in the local repositiry than central so user issue!!!!
KK20 Posted June 18, 2024 Posted June 18, 2024 (edited) right click taskbar I have had no issue with. We dont copy anything to local machine and we have updated our central ADMX. we are migrating our GPO to intune (about 80% there) so our taskbar and start menu modifications are intune policy now. This means scripts, im not sure which one of these gets rid of the icons but its one of them, it also removes it from the lockscreen too. @echo off reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings" /v NOC_GLOBAL_SETTING_ALLOW_TOASTS_ABOVE_LOCK /t REG_DWORD /d 0 /f /reg:64 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings" /v RotatingLockScreenOverlayEnabled /t REG_DWORD /d 0 /f /reg:64 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings" /v "SubscribedContent-338387Enabled" /t REG_DWORD /d 0 /f /reg:64 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings" /v "SubscribedContent-338389Enabled" /t REG_DWORD /d 0 /f /reg:64 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings" /v TaskbarAl /t REG_DWORD /d 0 /f /reg:64 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v RotatingLockScreenOverlayEnabled /t REG_DWORD /d 0 /f /reg:64 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v RotatingLockScreenOverlayEnabled /t REG_DWORD /d 0 /f /reg:64 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338387Enabled" /t REG_DWORD /d 0 /f /reg:64 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338389Enabled" /t REG_DWORD /d 0 /f /reg:64 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v SystemPaneSuggestionsEnabled /t REG_DWORD /d 0 /f /reg:64 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v SoftLandingEnabled /t REG_DWORD /d 0 /f /reg:64 ::taskbar reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v ShowCopilotButton /t REG_DWORD /d 0 /f /reg:64 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v TaskbarAl /t REG_DWORD /d 0 /f /reg:64 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v TaskbarAutoHideInTabletMode /t REG_DWORD /d 0 /f /reg:64 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v ShowTaskViewButton /t REG_DWORD /d 0 /f /reg:64 reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" /v ShowTaskViewButtonBingSearchEnabled /t REG_DWORD /d 0 /f /reg:64 Edited June 18, 2024 by KK20
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now