From d8ce7f36e9c8e3cddafeecbebedba594a4d0b3f4 Mon Sep 17 00:00:00 2001 From: 2Shirt <2xShirt@gmail.com> Date: Wed, 27 Feb 2019 23:55:11 -0700 Subject: [PATCH] Expanded registry edits * Disable edge swipe * Add This PC to Desktop * Add User's Files to Desktop * Launch folders as separate process * Addresses issue #60 --- .bin/Scripts/functions/setup.py | 31 +++++++++++++++++++++++++++---- 1 file changed, 27 insertions(+), 4 deletions(-) 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': {