mirror of
https://github.com/slorelee/wimbuilder2.git
synced 2025-05-06 18:25:51 +08:00
73 lines
2.7 KiB
HTML
73 lines
2.7 KiB
HTML
<div style="margin:5px;padding:5px;">
|
|
<!--
|
|
<link id="jquery-ui-theme" href="assets/vendor/jquery-ui/themes/hotsneaks/jquery-ui.theme.min.css" rel="stylesheet">
|
|
-->
|
|
|
|
<fieldset>
|
|
<legend> PE Loader </legend>
|
|
<table><tr>
|
|
<td style="width:20%"><label><input type="radio" class="opt_item" name="loader.name" value="lua" /> Lua</label></td>
|
|
<td style="width:20%"><label><input type="radio" class="opt_item" name="loader.name" value="pecmd" checked /> PECMD</label></td>
|
|
<td style="width:40%"><label><input type="radio" class="opt_item" name="loader.name" value="system" /> SYSTEM(startnet.cmd)</label></td>
|
|
</tr></table>
|
|
</fieldset>
|
|
|
|
<div style="margin:20px 10px">
|
|
<div style="margin-bottom:10px">PEMaterial Path X:\ <input type="text" style="width:50%" class="opt_item" name="loader.PEMaterial" value="PEMaterial" /></div>
|
|
<button class="pure-button button-maroon" onclick="OpenFolder($obj_project.path + '\\_CustomFiles_\\PEMaterial\\')">Open PEMaterial</button>
|
|
<button class="pure-button button-lightblue" onclick="OpenFolder($obj_project.path + '\\_CustomFiles_\\PEMaterial\\Autoruns')">Open Autoruns</button>
|
|
</div>
|
|
|
|
<div id="peloader_tab">
|
|
<div class="tab tab0">
|
|
|
|
<div>
|
|
Use the small simple lua to manage the startup phase.<br/>
|
|
which one is open-source full functional strong programmability,
|
|
with the expansibility modern design.
|
|
</div>
|
|
<br/><br/>
|
|
<button class="pure-button button-green" onclick="edit_menu_action($obj_project.path + '\\_CustomFiles_\\PEMaterial\\pecmd.lua')">View pecmd.lua</button>
|
|
|
|
</div>
|
|
|
|
<div class="tab tab1">
|
|
|
|
<div>
|
|
Use the popular PECMD.exe to manage the startup phase.
|
|
<br/><br/>
|
|
<button class="pure-button" onclick="edit_menu_action($obj_project.path + '\\_CustomFiles_\\PEMaterial\\pecmd.ini')">View Pecmd.ini</button>
|
|
<button class="pure-button" onclick="edit_menu_action($obj_project.path + '\\_CustomFiles_\\PEMaterial\\PecmdAdmin.ini')">View PecmdAdmin.ini</button>
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="tab tab2">
|
|
|
|
<div>
|
|
Use SYSTEM's startnet.cmd to manage the startup phase.
|
|
<br/><br/>
|
|
<button class="pure-button" onclick="edit_menu_action($obj_project.path + '\\_CustomFiles_\\PEMaterial\\startnet.cmd')">View startnet.cmd</button>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<script>
|
|
(function init() {
|
|
if (!$patch_loaded) {
|
|
$("#peloader_tab").ultab({header:['Lua', 'PECMD', 'System']});
|
|
if (!$patches_opt["loader.name"] || $patches_opt["loader.name"] == 'pecmd') {
|
|
$("#peloader_tab li:eq(1)").click();
|
|
} else if ($patches_opt["loader.name"] == 'system') {
|
|
$("#peloader_tab li:eq(2)").click();
|
|
}
|
|
} else {
|
|
$("#peloader_tab").ultab(true);
|
|
}
|
|
})();
|
|
|
|
</script> |