Adjusted Explorer settings
This commit is contained in:
parent
4cb14c6429
commit
48c0cf0b1b
1 changed files with 10 additions and 6 deletions
|
|
@ -92,15 +92,23 @@ SETTINGS_EXPLORER_SYSTEM = {
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
SETTINGS_EXPLORER_USER = {
|
SETTINGS_EXPLORER_USER = {
|
||||||
|
# Disable features
|
||||||
r'Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager': {
|
r'Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager': {
|
||||||
'DWORD Items': {
|
'DWORD Items': {
|
||||||
# Disable silently installed apps
|
# Silently installed apps
|
||||||
'SilentInstalledAppsEnabled': 0,
|
'SilentInstalledAppsEnabled': 0,
|
||||||
# Disable Tips and Tricks
|
# Tips and Tricks
|
||||||
'SoftLandingEnabled ': 0,
|
'SoftLandingEnabled ': 0,
|
||||||
'SubscribedContent-338389Enabled': 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
|
# Hide People bar
|
||||||
r'Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\People': {
|
r'Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\People': {
|
||||||
'DWORD Items': {'PeopleBand': 0},
|
'DWORD Items': {'PeopleBand': 0},
|
||||||
|
|
@ -109,10 +117,6 @@ SETTINGS_EXPLORER_USER = {
|
||||||
r'Software\Microsoft\Windows\CurrentVersion\Search': {
|
r'Software\Microsoft\Windows\CurrentVersion\Search': {
|
||||||
'DWORD Items': {'SearchboxTaskbarMode': 0},
|
'DWORD Items': {'SearchboxTaskbarMode': 0},
|
||||||
},
|
},
|
||||||
# Change default Explorer view to "Computer"
|
|
||||||
r'Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced': {
|
|
||||||
'DWORD Items': {'LaunchTo': 1},
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# Visual C++ Runtimes
|
# Visual C++ Runtimes
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue