Renamed privacy sections
This commit is contained in:
parent
26e8c93282
commit
742a944ace
2 changed files with 4 additions and 4 deletions
|
|
@ -204,8 +204,8 @@ def config_explorer_user():
|
|||
"""Configure Windows Explorer for current user via Registry settings."""
|
||||
write_registry_settings(SETTINGS_EXPLORER_USER, all_users=False)
|
||||
|
||||
def config_privacy_settings():
|
||||
"""Configure Windows 10 privacy settings with O&O ShutUp10."""
|
||||
def disable_windows_telemetry():
|
||||
"""Disable Windows 10 telemetry settings with O&O ShutUp10."""
|
||||
extract_item('ShutUp10', silent=True)
|
||||
cmd = [
|
||||
r'{BinDir}\ShutUp10\OOSU10.exe'.format(**global_vars),
|
||||
|
|
|
|||
|
|
@ -45,8 +45,8 @@ if __name__ == '__main__':
|
|||
if global_vars['OS']['Version'] == '10':
|
||||
try_and_print(message='Explorer...',
|
||||
function=config_explorer_system, cs='Done')
|
||||
try_and_print(message='Privacy...',
|
||||
function=config_privacy_settings, cs='Done')
|
||||
try_and_print(message='Disabling telemetry...',
|
||||
function=disable_windows_telemetry, cs='Done')
|
||||
try_and_print(message='Enabling RegBack...',
|
||||
function=enable_regback, cs='Done')
|
||||
try_and_print(message='Enabling System Restore...',
|
||||
|
|
|
|||
Loading…
Reference in a new issue