# Plan * Use current WizardKit scripts as the new base * Split functions into multiple files under Scripts\functions\ * Review menus and menu-flow * Log everything and open log at end of menu-flows * (before returning to the root/main menu)
21 lines
502 B
Python
21 lines
502 B
Python
# Wizard Kit PE: Root Menu
|
|
|
|
import os
|
|
import sys
|
|
|
|
# Init
|
|
os.chdir(os.path.dirname(os.path.realpath(__file__)))
|
|
sys.path.append(os.getcwd())
|
|
from functions.common import *
|
|
from functions.winpe_menus import *
|
|
init_global_vars()
|
|
os.system('title {}: Root Menu'.format(KIT_NAME_FULL))
|
|
global_vars['LogFile'] = r'{LogDir}\WinPE.log'.format(**global_vars)
|
|
|
|
if __name__ == '__main__':
|
|
try:
|
|
menu_root()
|
|
except SystemExit:
|
|
pass
|
|
except:
|
|
major_exception()
|