Содержание bat-файла для экспорта лицензии eset в *.reg файл, для последующего запуска на клиентах:
regedit.exe -ea N:\eset.reg "HKEY_LOCAL_MACHINE\SOFTWARE\ESET\ESET Security\CurrentVersion\Plugins\01000400\Profiles\@My profile"
Чего-то там поменялось)) Можно указать конечное значение. И сообщает о завершении алертом.
<html>
<head>
<style type="text/css">
* {
margin: 10px;
}
body {
color: #505050;
font-size: 22px;
}
input {
border: 1px solid #ccc;
color: #505050;
font-size: 22px;
}
iframe {
border: 10px solid #3e6093;
}
label:hover {
text-decoration: underline;
}
#go {
color: #4fad51;
}
#br {
color: #e03c42;
}
</style>
</head>
<body>
<iframe id="edboframe" width="1100px" border="1" height="400px" src=""></iframe><br/>
<label for="lid">Start with:</label> <input type="text" id="lid" value="1" />
<label for="endid">Stop at:</label> <input type="text" id="endid" value="1" />
<label for="timer">Interval:</label> <input type="text" id="timer" value="3" /><br/>
<input type="button" id="go" value="Start" onclick="StartScript();" />
<input type="button" id="br" value="Stop" onclick="StopScript();" /><br/>
<script type="text/javascript">
function StartScript() {
var ed=document.getElementById('edboframe');
var id=document.getElementById('lid');
var to=document.getElementById('timer');
var end=document.getElementById('endid');
var next=(id.value*1)+1;
if (next<=end.value) {
ed.src='http://10.61.9.15/lists_abiturients/?id='+next+'&action=edboup';
id.value=next;
setTimeout(StartScript,to.value*1000);
}
else {
alert('Successfully completed');
}
}
function StopScript() {
var to=document.getElementById('timer');
to.value=9999;
}
</script>
</body>
</html>