diff --git a/.bin/Scripts/settings/setup.py b/.bin/Scripts/settings/setup.py index 0d7b45ba..6338701d 100644 --- a/.bin/Scripts/settings/setup.py +++ b/.bin/Scripts/settings/setup.py @@ -92,15 +92,23 @@ SETTINGS_EXPLORER_SYSTEM = { }, } SETTINGS_EXPLORER_USER = { + # Disable features r'Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager': { 'DWORD Items': { - # Disable silently installed apps + # Silently installed apps 'SilentInstalledAppsEnabled': 0, - # Disable Tips and Tricks + # Tips and Tricks 'SoftLandingEnabled ': 0, 'SubscribedContent-338389Enabled': 0, }, }, + # File Explorer + r'Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced': { + 'DWORD Items': { + # Change default Explorer view to "Computer" + 'LaunchTo': 1, + }, + }, # Hide People bar r'Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\People': { 'DWORD Items': {'PeopleBand': 0}, @@ -109,10 +117,6 @@ SETTINGS_EXPLORER_USER = { r'Software\Microsoft\Windows\CurrentVersion\Search': { 'DWORD Items': {'SearchboxTaskbarMode': 0}, }, - # Change default Explorer view to "Computer" - r'Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced': { - 'DWORD Items': {'LaunchTo': 1}, - }, } # Visual C++ Runtimes