markaurel
Goto Top

GPO Einstellungen Startmenü Windows 11

Hallo zusammen und bitte um eure Hilfe!

Kennt jemand eine Möglichkeit das Zahnrädchen bzgl. Einstellungen im Startmenü von Windows 11 (vgl. Screenshot) via Gruppenrichtlinie hinzuzufügen? - Ich hab dbzgl. nämlich keine Möglichkeiten gefunden. (*.admx sind aktuell.)

Danke für eure Unterstützung.

MfG

M.A.
screenshot 2023-04-20 183102

Content-Key: 6853874907

Url: https://administrator.de/contentid/6853874907

Printed on: April 27, 2024 at 07:04 o'clock

Mitglied: 3063370895
Solution 3063370895 Apr 20, 2023 updated at 17:52:41 (UTC)
Goto Top
Hi,

setze die Registry-Einträge

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PolicyManager\current\device\Start]

"AllowPinnedFolderSettings"=dword:00000001  
"AllowPinnedFolderSettings_ProviderSet"=dword:00000001  

als PS-Script:
if(!(Test-Path -LiteralPath "HKLM:\SOFTWARE\Microsoft\PolicyManager\current\device\Start")) {  New-Item "HKLM:\SOFTWARE\Microsoft\PolicyManager\current\device\Start" -Force };  
New-ItemProperty -LiteralPath 'HKLM:\SOFTWARE\Microsoft\PolicyManager\current\device\Start' -Name 'AllowPinnedFolderSettings' -Value 1 -PropertyType DWord -Force;  
New-ItemProperty -LiteralPath 'HKLM:\SOFTWARE\Microsoft\PolicyManager\current\device\Start' -Name 'AllowPinnedFolderSettings_ProviderSet' -Value 1 -PropertyType DWord -Force;  

Im Live-Betrieb danach explorer.exe neu starten

Mehr Infos:

_ProviderSet"=dword:00000000 == Allows User Toggle  
_ProviderSet"=dword:00000001 == Blocks User Toggle  
"AllowPinnedFolderXXXXXXXXXXXX"=dword:00000001 == Show  
"AllowPinnedFolderXXXXXXXXXXXX"=dword:00000000 == Hide  


Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PolicyManager\current\device\Start]
"AllowPinnedFolderDocuments"=dword:00000001  
"AllowPinnedFolderDocuments_ProviderSet"=dword:00000001  
"AllowPinnedFolderDownloads"=dword:00000001  
"AllowPinnedFolderDownloads_ProviderSet"=dword:00000001  
"AllowPinnedFolderFileExplorer"=dword:00000001  
"AllowPinnedFolderFileExplorer_ProviderSet"=dword:00000001  
"AllowPinnedFolderMusic"=dword:00000001  
"AllowPinnedFolderMusic_ProviderSet"=dword:00000001  
"AllowPinnedFolderNetwork"=dword:00000001  
"AllowPinnedFolderNetwork_ProviderSet"=dword:00000001  
"AllowPinnedFolderPersonalFolder"=dword:00000001  
"AllowPinnedFolderPersonalFolder_ProviderSet"=dword:00000001  
"AllowPinnedFolderPictures"=dword:00000001  
"AllowPinnedFolderPictures_ProviderSet"=dword:00000001  
"AllowPinnedFolderSettings"=dword:00000001  
"AllowPinnedFolderSettings_ProviderSet"=dword:00000001  
"AllowPinnedFolderVideos"=dword:00000001  
"AllowPinnedFolderVideos_ProviderSet"=dword:00000001  

-Thomas
Member: markaurel
markaurel Apr 20, 2023 at 17:59:51 (UTC)
Goto Top
Guten Abend chaoti!

Danke für deine Hilfe!
Werde ich morgen testen - bin aber zuversichtlich, dass diese passen und dann den Beitrag auf gelöst setzen.

Nochmals danke!

MfG

M.A.
Member: markaurel
markaurel Apr 25, 2023 at 05:50:37 (UTC)
Goto Top
Zitat von @3063370895:

Hi,

setze die Registry-Einträge

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PolicyManager\current\device\Start]

"AllowPinnedFolderSettings"=dword:00000001  
"AllowPinnedFolderSettings_ProviderSet"=dword:00000001  

als PS-Script:
if(!(Test-Path -LiteralPath "HKLM:\SOFTWARE\Microsoft\PolicyManager\current\device\Start")) {  New-Item "HKLM:\SOFTWARE\Microsoft\PolicyManager\current\device\Start" -Force };  
New-ItemProperty -LiteralPath 'HKLM:\SOFTWARE\Microsoft\PolicyManager\current\device\Start' -Name 'AllowPinnedFolderSettings' -Value 1 -PropertyType DWord -Force;  
New-ItemProperty -LiteralPath 'HKLM:\SOFTWARE\Microsoft\PolicyManager\current\device\Start' -Name 'AllowPinnedFolderSettings_ProviderSet' -Value 1 -PropertyType DWord -Force;  

Im Live-Betrieb danach explorer.exe neu starten

Mehr Infos:

_ProviderSet"=dword:00000000 == Allows User Toggle  
_ProviderSet"=dword:00000001 == Blocks User Toggle  
"AllowPinnedFolderXXXXXXXXXXXX"=dword:00000001 == Show  
"AllowPinnedFolderXXXXXXXXXXXX"=dword:00000000 == Hide  


Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PolicyManager\current\device\Start]
"AllowPinnedFolderDocuments"=dword:00000001  
"AllowPinnedFolderDocuments_ProviderSet"=dword:00000001  
"AllowPinnedFolderDownloads"=dword:00000001  
"AllowPinnedFolderDownloads_ProviderSet"=dword:00000001  
"AllowPinnedFolderFileExplorer"=dword:00000001  
"AllowPinnedFolderFileExplorer_ProviderSet"=dword:00000001  
"AllowPinnedFolderMusic"=dword:00000001  
"AllowPinnedFolderMusic_ProviderSet"=dword:00000001  
"AllowPinnedFolderNetwork"=dword:00000001  
"AllowPinnedFolderNetwork_ProviderSet"=dword:00000001  
"AllowPinnedFolderPersonalFolder"=dword:00000001  
"AllowPinnedFolderPersonalFolder_ProviderSet"=dword:00000001  
"AllowPinnedFolderPictures"=dword:00000001  
"AllowPinnedFolderPictures_ProviderSet"=dword:00000001  
"AllowPinnedFolderSettings"=dword:00000001  
"AllowPinnedFolderSettings_ProviderSet"=dword:00000001  
"AllowPinnedFolderVideos"=dword:00000001  
"AllowPinnedFolderVideos_ProviderSet"=dword:00000001  

-Thomas

Hat super funktioniert. Danke nochmals!

MfG

M.A.