Initial commit...
This commit is contained in:
@@ -0,0 +1,54 @@
|
||||
<!doctype html>
|
||||
<head>
|
||||
<title>MAXIMUS Installer</title>
|
||||
<link rel="stylesheet" type="text/css" href="./resources/other/css.css">
|
||||
<HTA:APPLICATION
|
||||
ID="Master Command"
|
||||
VERSION="1.0"
|
||||
APPLICATIONNAME="Master Command"
|
||||
icon = "./resources/other/favicon.ico"
|
||||
SCROLL="yes"
|
||||
WINDOWSTATE="normal"
|
||||
border = "thin"
|
||||
caption = "yes"
|
||||
maximizeButton = "no"
|
||||
minimizeButton = "yes"
|
||||
showInTaskbar = "yes"
|
||||
version = "1.0"
|
||||
/>
|
||||
<script language="VBScript">
|
||||
Set objCall = CreateObject("WScript.Shell")
|
||||
|
||||
Function ktmp
|
||||
objCall.Run "cmd.exe /k resources\bin\batNvbs\Kill_Temp_Files.bat", 1, True
|
||||
End Function
|
||||
Function cm
|
||||
objCall.Run "resources\bin\batNvbs\Memory.vbe"
|
||||
End Function
|
||||
Function chkmbr
|
||||
objCall.Run "cmd.exe /k resources\bin\batNvbs\MBRCheck.exe", 1, True
|
||||
End Function
|
||||
Function appDTA
|
||||
objCall.Run "resources\bin\batNvbs\appdata.bat", 0, True
|
||||
End Function
|
||||
|
||||
</script>
|
||||
<style>
|
||||
.bttons {
|
||||
float:left;
|
||||
margin-left: 2em;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="bttons"><img src="../thumbnails/bat.png" style="width:10em;height:8em;" onclick="ktmp"></img><br><center>Kill All Temp files</center></div>
|
||||
<div class="bttons"><img src="../thumbnails/bat.png" style="width:10em;height:8em;" onclick="cm"></img><br><center>Clear Memory</center></div>
|
||||
<div class="bttons"><img src="../thumbnails/bat.png" style="width:10em;height:8em;" onclick="chkmbr"></img><br><center>Check MBR</center></div>
|
||||
<div class="bttons"><img src="../thumbnails/bat.png" style="width:10em;height:8em;" onclick="appDTA"></img><br><center>Access Appdata Folder</center></div>
|
||||
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user