Архив

Архив Сентябрь 2011
27 сентября 2011 Нет комментариев

Содержание bat-файла для экспорта лицензии eset в *.reg файл, для последующего запуска на клиентах:

regedit.exe -ea N:\eset.reg "HKEY_LOCAL_MACHINE\SOFTWARE\ESET\ESET Security\CurrentVersion\Plugins\01000400\Profiles\@My profile"
Categories: Other, Windows Tags:
6 сентября 2011 Нет комментариев

Чего-то там поменялось)) Можно указать конечное значение. И сообщает о завершении алертом.

<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>&nbsp;<input type="text" id="lid" value="1" />&nbsp;
<label for="endid">Stop at:</label>&nbsp;<input type="text" id="endid" value="1" />&nbsp;
<label for="timer">Interval:</label>&nbsp;<input type="text" id="timer" value="3" /><br/>
<input type="button" id="go" value="Start" onclick="StartScript();" />&nbsp;
<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>
Categories: Javascript, Web Tags:
6 сентября 2011 Нет комментариев
DELETE FROM tablename WHERE dt < DATE_SUB(CURDATE(), INTERVAL 1 DAY)
Categories: MySQL Tags: