29 lines
739 B
Python
29 lines
739 B
Python
# Wizard Kit: Search for product keys in the transfer folder
|
|
|
|
import os
|
|
import sys
|
|
|
|
# Init
|
|
sys.path.append(os.path.dirname(os.path.realpath(__file__)))
|
|
from functions.product_keys import *
|
|
init_global_vars()
|
|
os.system('title {}: Transferred Key Finder'.format(KIT_NAME_FULL))
|
|
set_log_file('Transferred Keys.log')
|
|
|
|
if __name__ == '__main__':
|
|
try:
|
|
stay_awake()
|
|
clear_screen()
|
|
print_info('{}: Transferred Key Finder\n'.format(KIT_NAME_FULL))
|
|
try_and_print(message='Searching for keys...',
|
|
function=list_clientdir_keys, print_return=True)
|
|
|
|
# Done
|
|
print_standard('\nDone.')
|
|
exit_script()
|
|
except SystemExit as sys_exit:
|
|
exit_script(sys_exit.code)
|
|
except:
|
|
major_exception()
|
|
|
|
# vim: sts=2 sw=2 ts=2
|