Updated system diagnostics
* Skip more sections under d7II mode * They will be handled by the new system setup script instead * Fixed some formatting
This commit is contained in:
parent
55bc3f250d
commit
f70cf16040
1 changed files with 15 additions and 13 deletions
|
|
@ -138,6 +138,7 @@ if __name__ == '__main__':
|
|||
|
||||
if D7_MODE:
|
||||
# Archive all browsers for all users
|
||||
print_standard(' ')
|
||||
archive_all_users()
|
||||
else:
|
||||
# Scan for supported browsers
|
||||
|
|
@ -149,24 +150,25 @@ if __name__ == '__main__':
|
|||
for k, v in sorted(BLEACH_BIT_CLEANERS.items()):
|
||||
try_and_print(message='{}...'.format(k),
|
||||
function=run_bleachbit,
|
||||
cs='Done', other_results=other_results,
|
||||
cs='SUCCESS', other_results=other_results,
|
||||
cleaners=v, preview=bool(not D7_MODE))
|
||||
print_standard(' ')
|
||||
|
||||
# Export system info
|
||||
print_info('Backup System Information')
|
||||
try_and_print(message='AIDA64 reports...',
|
||||
function=run_aida64, cs='Done', other_results=other_results)
|
||||
if not D7_MODE:
|
||||
print_info('Backup System Information')
|
||||
try_and_print(message='AIDA64 reports...',
|
||||
function=run_aida64, cs='SUCCESS', other_results=other_results)
|
||||
backup_browsers()
|
||||
try_and_print(message='File listing...',
|
||||
function=backup_file_list, cs='Done', other_results=other_results)
|
||||
try_and_print(message='Power plans...',
|
||||
function=backup_power_plans, cs='Done')
|
||||
try_and_print(message='Product Keys...',
|
||||
function=run_produkey, cs='Done', other_results=other_results)
|
||||
try_and_print(message='Registry...',
|
||||
function=backup_registry, cs='Done', other_results=other_results,
|
||||
overwrite=True)
|
||||
try_and_print(message='File listing...',
|
||||
function=backup_file_list, cs='SUCCESS', other_results=other_results)
|
||||
try_and_print(message='Power plans...',
|
||||
function=backup_power_plans, cs='SUCCESS')
|
||||
try_and_print(message='Product Keys...',
|
||||
function=run_produkey, cs='SUCCESS', other_results=other_results)
|
||||
try_and_print(message='Registry...',
|
||||
function=backup_registry, cs='SUCCESS', other_results=other_results,
|
||||
overwrite=True)
|
||||
|
||||
# Summary
|
||||
if not D7_MODE:
|
||||
|
|
|
|||
Loading…
Reference in a new issue