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
This commit is contained in:
2Shirt 2019-02-27 23:55:11 -07:00
parent 63fa4d6f80
commit d8ce7f36e9
Signed by: 2Shirt
GPG key ID: 152FAC923B0E132C

View file

@ -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': {