Update launchers.py
This commit is contained in:
parent
df6d3d4a24
commit
eab7a03f70
1 changed files with 20 additions and 13 deletions
|
|
@ -18,8 +18,8 @@ LAUNCHERS = {
|
|||
},
|
||||
'2) Windows Updates': {
|
||||
'L_TYPE': 'Executable',
|
||||
'L_PATH': '.',
|
||||
'L_ITEM': 'control',
|
||||
'L_PATH': r'%SystemRoot%\System32',
|
||||
'L_ITEM': 'control.exe',
|
||||
'L_ARGS': 'update',
|
||||
'L_ELEV': 'True',
|
||||
},
|
||||
|
|
@ -81,6 +81,24 @@ LAUNCHERS = {
|
|||
'L_PATH': 'ConEmu',
|
||||
'L_ITEM': 'ConEmu.exe',
|
||||
},
|
||||
'Debug Console (Command Prompt)': {
|
||||
'L_TYPE': 'Executable',
|
||||
'L_PATH': 'ConEmu',
|
||||
'L_ITEM': 'ConEmu.exe',
|
||||
'L_ARGS': r'-Dir %bin%\Scripts',
|
||||
'L_ELEV': 'True',
|
||||
},
|
||||
'Debug Console (Python)': {
|
||||
'L_TYPE': 'Executable',
|
||||
'L_PATH': 'ConEmu',
|
||||
'L_ITEM': 'ConEmu.exe',
|
||||
'L_ARGS': r'-Dir %bin%\Scripts -Run ..\Python\x%ARCH%\python.exe -i embedded_python_env.py',
|
||||
'L_ELEV': 'True',
|
||||
'Extra Code': [
|
||||
'set ARCH=32',
|
||||
'if /i "%PROCESSOR_ARCHITECTURE%" == "AMD64" set "ARCH=64"',
|
||||
],
|
||||
},
|
||||
'ERUNT': {
|
||||
'L_TYPE': 'Executable',
|
||||
'L_PATH': 'erunt',
|
||||
|
|
@ -245,17 +263,6 @@ LAUNCHERS = {
|
|||
'L_ITEM': 'UninstallView.exe',
|
||||
'L_ELEV': 'True',
|
||||
},
|
||||
'WizardKit Debug Console': {
|
||||
'L_TYPE': 'Executable',
|
||||
'L_PATH': 'ConEmu',
|
||||
'L_ITEM': 'ConEmu.exe',
|
||||
'L_ARGS': r'-Dir %bin%\Scripts -Run ..\Python\x%ARCH%\python.exe -i embedded_python_env.py',
|
||||
'L_ELEV': 'True',
|
||||
'Extra Code': [
|
||||
'set ARCH=32',
|
||||
'if /i "%PROCESSOR_ARCHITECTURE%" == "AMD64" set "ARCH=64"',
|
||||
],
|
||||
},
|
||||
'WizTree': {
|
||||
'L_TYPE': 'Executable',
|
||||
'L_PATH': 'WizTree',
|
||||
|
|
|
|||
Loading…
Reference in a new issue