Fixed dict collision in Explorer settings
* Also updated section descriptions * Addresses issue #60
This commit is contained in:
parent
89a09a322e
commit
6876d1c0ef
1 changed files with 23 additions and 19 deletions
|
|
@ -106,21 +106,34 @@ SETTINGS_EXPLORER_SYSTEM = {
|
|||
},
|
||||
}
|
||||
SETTINGS_EXPLORER_USER = {
|
||||
# Add This PC to Desktop
|
||||
# Desktop icons
|
||||
r'Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\ClassicStartMenu': {
|
||||
'DWORD Items': {'{20D04FE0-3AEA-1069-A2D8-08002B30309D}': 0},
|
||||
'DWORD Items': {
|
||||
# This PC
|
||||
'{20D04FE0-3AEA-1069-A2D8-08002B30309D}': 0,
|
||||
# User's Folder
|
||||
'{59031a47-3f72-44a7-89c5-5595fe6b30ee}': 0,
|
||||
},
|
||||
},
|
||||
r'Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel': {
|
||||
'DWORD Items': {'{20D04FE0-3AEA-1069-A2D8-08002B30309D}': 0},
|
||||
'DWORD Items': {
|
||||
# This PC
|
||||
'{20D04FE0-3AEA-1069-A2D8-08002B30309D}': 0,
|
||||
# User's Folder
|
||||
'{59031a47-3f72-44a7-89c5-5595fe6b30ee}': 0,
|
||||
},
|
||||
},
|
||||
# Add Users Files to Desktop
|
||||
r'Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\ClassicStartMenu': {
|
||||
'DWORD Items': {'{59031a47-3f72-44a7-89c5-5595fe6b30ee}': 0},
|
||||
# Disable features
|
||||
r'Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager': {
|
||||
'DWORD Items': {
|
||||
# Silently installed apps
|
||||
'SilentInstalledAppsEnabled': 0,
|
||||
# Tips and Tricks
|
||||
'SoftLandingEnabled ': 0,
|
||||
'SubscribedContent-338389Enabled': 0,
|
||||
},
|
||||
},
|
||||
r'Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel': {
|
||||
'DWORD Items': {'{59031a47-3f72-44a7-89c5-5595fe6b30ee}': 0},
|
||||
},
|
||||
# Explorer
|
||||
# File Explorer
|
||||
r'Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced': {
|
||||
'DWORD Items': {
|
||||
# Change default Explorer view to "Computer"
|
||||
|
|
@ -129,15 +142,6 @@ SETTINGS_EXPLORER_USER = {
|
|||
'SeparateProcess': 1,
|
||||
},
|
||||
},
|
||||
r'Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager': {
|
||||
'DWORD Items': {
|
||||
# Disable silently installed apps
|
||||
'SilentInstalledAppsEnabled': 0,
|
||||
# Disable Tips and Tricks
|
||||
'SoftLandingEnabled ': 0,
|
||||
'SubscribedContent-338389Enabled': 0,
|
||||
},
|
||||
},
|
||||
# Hide People bar
|
||||
r'Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\People': {
|
||||
'DWORD Items': {'PeopleBand': 0},
|
||||
|
|
|
|||
Loading…
Reference in a new issue