diff --git a/.bin/Scripts/functions/setup.py b/.bin/Scripts/functions/setup.py index 36423936..f7237197 100644 --- a/.bin/Scripts/functions/setup.py +++ b/.bin/Scripts/functions/setup.py @@ -42,6 +42,10 @@ SETTINGS_ESET = { }, } SETTINGS_EXPLORER_SYSTEM = { + # Disable edge swipe + r'Software\Policies\Microsoft\Windows\EdgeUI': { + 'DWORD Items': {'AllowEdgeSwipe': 0}, + }, # Disable Location Tracking r'Software\Microsoft\Windows NT\CurrentVersion\Sensor\Overrides\{BFA794E4-F964-4FDB-90F6-51056BFE4B44}': { 'DWORD Items': {'SensorPermissionState': 0}, @@ -69,6 +73,29 @@ SETTINGS_EXPLORER_SYSTEM = { }, } SETTINGS_EXPLORER_USER = { + # Add This PC to Desktop + r'Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\ClassicStartMenu': { + 'DWORD Items': {'{20D04FE0-3AEA-1069-A2D8-08002B30309D}': 0}, + }, + r'Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel': { + 'DWORD Items': {'{20D04FE0-3AEA-1069-A2D8-08002B30309D}': 0}, + }, + # Add Users Files to Desktop + r'Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\ClassicStartMenu': { + 'DWORD Items': {'{59031a47-3f72-44a7-89c5-5595fe6b30ee}': 0}, + }, + r'Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel': { + 'DWORD Items': {'{59031a47-3f72-44a7-89c5-5595fe6b30ee}': 0}, + }, + # Explorer + r'Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced': { + 'DWORD Items': { + # Change default Explorer view to "Computer" + 'LaunchTo': 1, + # Launch Folder Windows in a Separate Process + 'SeparateProcess': 1, + }, + }, # Disable silently installed apps r'Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager': { 'DWORD Items': {'SilentInstalledAppsEnabled': 0}, @@ -85,10 +112,6 @@ SETTINGS_EXPLORER_USER = { r'Software\Microsoft\Windows\CurrentVersion\Search': { 'DWORD Items': {'SearchboxTaskbarMode': 1}, }, - # Change default Explorer view to "Computer" - r'Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced': { - 'DWORD Items': {'LaunchTo': 1}, - }, } SETTINGS_GOOGLE_CHROME = { r'Software\Google\Chrome\Extensions\cjpalhdlnbpafiamejdnhcphjbkeiagm': {