53 lines
1.6 KiB
Python
53 lines
1.6 KiB
Python
# Wizard Kit: Settings - Tools
|
|
|
|
TOOLS = {
|
|
# NOTE: BinDir will be prepended to these paths at runtime
|
|
'AIDA64': {
|
|
'32': r'AIDA64\aida64.exe'},
|
|
'AutoRuns': {
|
|
'32': r'Autoruns\autoruns.exe',
|
|
'64': r'Autoruns\autoruns64.exe'},
|
|
'BleachBit': {
|
|
'32': r'BleachBit\bleachbit_console.exe'},
|
|
'Caffeine': {
|
|
'32': r'Caffeine\caffeine.exe'},
|
|
'Du': {
|
|
'32': r'Du\du.exe',
|
|
'64': r'Du\du64.exe'},
|
|
'ERUNT': {
|
|
'32': r'ERUNT\ERUNT.EXE'},
|
|
'Everything': {
|
|
'32': r'Everything\Everything.exe',
|
|
'64': r'Everything\Everything64.exe'},
|
|
'FastCopy': {
|
|
'32': r'FastCopy\FastCopy.exe',
|
|
'64': r'FastCopy\FastCopy64.exe'},
|
|
'HitmanPro': {
|
|
'32': r'HitmanPro\HitmanPro.exe',
|
|
'64': r'HitmanPro\HitmanPro64.exe'},
|
|
'HWiNFO': {
|
|
'32': r'HWiNFO\HWiNFO.exe',
|
|
'64': r'HWiNFO\HWiNFO64.exe'},
|
|
'KVRT': {
|
|
'32': r'KVRT\KVRT.exe'},
|
|
'NotepadPlusPlus': {
|
|
'32': r'NotepadPlusPlus\notepadplusplus.exe'},
|
|
'ProduKey': {
|
|
'32': r'ProduKey\ProduKey.exe',
|
|
'64': r'ProduKey\ProduKey64.exe'},
|
|
'RKill': {
|
|
'32': r'RKill\RKill.exe'},
|
|
'SevenZip': {
|
|
'32': r'7-Zip\7za.exe',
|
|
'64': r'7-Zip\7za64.exe'},
|
|
'TDSSKiller': {
|
|
'32': r'TDSSKiller\TDSSKiller.exe'},
|
|
'wimlib-imagex': {
|
|
'32': r'wimlib\x32\wimlib-imagex.exe',
|
|
'64': r'wimlib\x64\wimlib-imagex.exe'},
|
|
'XMPlay': {
|
|
'32': r'XMPlay\xmplay.exe'},
|
|
}
|
|
|
|
if __name__ == '__main__':
|
|
print("This file is not meant to be called directly.")
|