Initial commit...
This commit is contained in:
@@ -0,0 +1,85 @@
|
||||
<!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 nirsoft
|
||||
objCall.Exec "resources\bin\nirsoft\NirLauncher.exe"
|
||||
End Function
|
||||
Function uvk
|
||||
objCall.Exec "resources\bin\exes\uvk.exe"
|
||||
End Function
|
||||
Function lrc
|
||||
objCall.Exec "resources\bin\littleRegCleaner\LittleRegistryCleaner.exe"
|
||||
End Function
|
||||
Function tws
|
||||
result = Inputbox("Please enter :" & vbCrLf &_
|
||||
"1 --> Launch the server." & vbCrLf &_
|
||||
"2 --> Access the server wwwroot\ folder.","1")
|
||||
Select Case result
|
||||
Case 1
|
||||
objCall.Exec "resources\bin\tinyWebServer\run_web_server.exe"
|
||||
Case 2
|
||||
objCall.Exec "explorer.exe C:\Program Files\sentinelCommand\resources\bin\tinyWebServer\wwwroot\"
|
||||
End Select
|
||||
End Function
|
||||
Function decrap
|
||||
objCall.Exec "resources\bin\exes\pcdecrapifier.exe"
|
||||
End Function
|
||||
Function jrt
|
||||
objCall.Exec "resources\bin\exes\JRT.exe"
|
||||
End Function
|
||||
Function hijackThis
|
||||
objCall.Exec "resources\bin\exes\hijackThis.exe"
|
||||
End Function
|
||||
</script>
|
||||
<style>
|
||||
.bttons {
|
||||
float:left;
|
||||
margin-top: .5em;
|
||||
margin-left: 2em;
|
||||
}
|
||||
.btn {
|
||||
width:10em;
|
||||
height:8em;
|
||||
}
|
||||
.cntrer {
|
||||
clear:both;
|
||||
margin-left:5em;
|
||||
margin-right:5em;
|
||||
}
|
||||
</style>
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div class="cntrer">
|
||||
<div class="bttons"><img src="../thumbnails/nirsoft.jpg" class="btn" onclick="nirsoft"></img><br><center>Nirsoft</center></div>
|
||||
<div class="bttons"><img src="../thumbnails/uvk.jpg" class="btn" onclick="uvk"></img><br><center>UltraVirusKiller Portable</center></div>
|
||||
<div class="bttons"><img src="../thumbnails/pcDecrap.jpg" class="btn" onclick="decrap"></img><br><center>PC-Decrapifier</center></div>
|
||||
<div class="bttons"><img src="../thumbnails/jrt.jpg" class="btn" onclick="jrt"></img><br><center>Junkware Removal Tool</center></div>
|
||||
</div>
|
||||
<div class="cntrer">
|
||||
<div class="bttons"><img src="../thumbnails/hijackThis.jpg" class="btn" onclick="hijackThis"></img><br><center>HijackThis</center></div>
|
||||
<div class="bttons"><img src="../thumbnails/lilRegCleaner.jpg" class="btn" onclick="lrc"></img><br><center>Little Registry Cleaner</center></div>
|
||||
<div class="bttons"><img src="../thumbnails/tinyWebSrvr.jpg" class="btn" onclick="tws"></img><br><center>Tiny Web Server</center></div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user