Added confirmation to cbs_fix.py
This commit is contained in:
parent
68aed8ff34
commit
38cb129add
1 changed files with 5 additions and 1 deletions
|
|
@ -17,10 +17,14 @@ if __name__ == '__main__':
|
||||||
# Prep
|
# Prep
|
||||||
stay_awake()
|
stay_awake()
|
||||||
os.system('cls')
|
os.system('cls')
|
||||||
print_info('{}: CBS Cleanup Tool\n'.format(KIT_NAME_FULL))
|
|
||||||
folder_path = r'{}\Backups'.format(KIT_NAME_SHORT)
|
folder_path = r'{}\Backups'.format(KIT_NAME_SHORT)
|
||||||
dest = select_destination(folder_path=folder_path,
|
dest = select_destination(folder_path=folder_path,
|
||||||
prompt='Which disk are we using for temp data and backup?')
|
prompt='Which disk are we using for temp data and backup?')
|
||||||
|
|
||||||
|
# Show details
|
||||||
|
print_info('{}: CBS Cleanup Tool\n'.format(KIT_NAME_FULL))
|
||||||
|
show_info('Backup / Temp path:', dest)
|
||||||
|
print_standard('\n')
|
||||||
if (not ask('Proceed with CBS cleanup?')):
|
if (not ask('Proceed with CBS cleanup?')):
|
||||||
abort()
|
abort()
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue