hta 定時關(guān)機(jī)重啟實現(xiàn)代碼
來源:易賢網(wǎng) 閱讀:907 次 日期:2014-08-12 17:21:04
溫馨提示:易賢網(wǎng)小編為您整理了“hta 定時關(guān)機(jī)重啟實現(xiàn)代碼”,方便廣大網(wǎng)友查閱!

代碼如下:

<html>

<head>

<meta http-equiv="content-type" content="text/html;charset=gb2312">

<title>一個用于定時重啟或關(guān)閉計算機(jī)的小工具,適用于Windows 2K/XP/2003 </title>

<hta:application

id="WTimer"

maximizebutton="No"

minimizebutton="Yes"

singleinstance="Yes"

contextmenu="Yes"

sysmenu="Yes"

version="1.0"

innerborder="No"

caption="Yes"

showintaskbar="Yes"

border="Normal"

borderstyle="Normal"

applicationname="Windows Timer"

icon="TimerIco.ico"

/>

<Style type="text/css">

<!--

* { font-family:Courier New,Arial,Sans-serif;font-size:9pt; }

body { overflow-y:hidden; }

div a:link,div a:visited { text-decoration:none;color:#000 }

div a:hover { text-decoration:underline;color:#f00 }

#footerinfo { width:100%;display:table;margin-top:5px; }

#left { float:left;width:70%; }

#right { float:right;width:29%;text-align:right;margin-right:1px; }

-->

</Style>

<Script Language="JavaScript">

<!--

$bl_Sleep=false;

function getObject($obj) {

return(document.getElementById($obj));

}

String.prototype.parseInt=function() {

return(parseInt(this));

}

function getRadioVal($name) {

$oEms=document.getElementsByName($name);

for ($i=0;$i<$oEms.length;$i++) {

if ($oEms[$i].checked) { return($oEms[$i].value); }

}

}

function isDeclared($varName) {

return(typeof($varName)!="undefined");

}

function chStatus($name,$status) {

$ooEms=document.getElementsByName($name);

for ($a=0;$a<$ooEms.length;$a++) {

$ooEms[$a].disabled=$status;

}

}

function window.onload() {

$sWidth=window.screen.width;

$sHeight=window.screen.height;

$aWidth=400;

$aHeight=185;

window.resizeTo($aWidth,$aHeight);

window.moveTo(($sWidth-$aWidth)/2,($sHeight-$aHeight)/2);

document.bgColor="#d4d0c8";

getObject("StopButton").disabled=true;

getObject("left").innerHTML="提示:請選擇您想要使用的功能!";

}

function Timer_Quit() {

window.close();

}

function Timer_Kernel() {

if ($bl_Sleep) {

if (isDeclared($time) && isDeclared($mod_time) && isDeclared($operation)) {

if ($time>0) {

$Oper_str="";

$Hint_str="";

$Titl_str="";

if ($operation=="rWin") {

$Oper_str="<span style=\"color:red\">提示:系統(tǒng)計時重啟功能已啟用,請注意保存!</span>";

}

else {

$Oper_str="<span style=\"color:red\">提示:系統(tǒng)計時關(guān)閉功能已啟用,請注意保存!</span>";

}

if ($mod_time=="mod_minute") {

$tMinute=($time/60).toString().parseInt();

$tSecond=$time%60;

if ($tMinute!=0) {

if ($tSecond<10) {

$tSecond="0"+$tSecond;

}

$Titl_str="剩余時間:"+$tMinute+"分"+$tSecond+"秒";

}

else {

$Titl_str="剩余時間:"+$tSecond+"秒";

}

}

else {

$Titl_str="剩余時間:"+$time+"秒";

}

getObject("left").innerHTML=$Oper_str;

document.title=$Titl_str;

$time=$time-1;

$o=setTimeout("Timer_Kernel()",1000);

}

else {

$Flag="";

if ($operation=="rWin") {

$Flag=6; //6為重啟操作系統(tǒng)

}

else {

$Flag=1; //1為關(guān)閉操作系統(tǒng)

}

OperateWin32($Flag);

getObject("left").innerHTML="<span style=\"color:red\">提示:正在執(zhí)行預(yù)定操作!</span>";

document.title="正在執(zhí)行預(yù)定操作";

}

}

}

}

function Timer_Stop() {

$bl_Sleep=false;

if (isDeclared($o)) { clearTimeout($o); }

getObject("time").disabled=false;

getObject("mod_time").disabled=false;

chStatus("operation",false);

getObject("StartButton").disabled=false;

getObject("StopButton").disabled=true;

getObject("left").innerHTML="提示:請選擇您想要使用的功能!";

document.title="♀Windows系統(tǒng)計時器♀";

}

function Timer_Start() {

$bl_Sleep=true;

$nowTime="";

$time=getObject("time").value;

$mod_time=getObject("mod_time").value;

$operation=getRadioVal("operation");

if (isNaN($time) || $time=="") {

alert("請正確設(shè)定一個時間值! ");

getObject("time").select();

return;

}

else {

$time=$time.parseInt();

if ($mod_time=="mod_minute") { $time=$time*60; }

}

getObject("time").disabled=true;

getObject("mod_time").disabled=true;

chStatus("operation",true);

getObject("StartButton").disabled=true;

getObject("StopButton").disabled=false;

Timer_Kernel();

}

function OperateWin32($DownFlag) {

$OS_Pro=GetObject("WinMgmts:{(shutdown)}//./root/cimv2").ExecQuery("select * from win32_operatingsystem where primary=true");

for ($e=new Enumerator($OS_Pro);!$e.atEnd();$e.moveNext()) {

$getProcess=$e.item()

$getProcess.win32shutdown($DownFlag);

}

}

function ResponseKeyPress() {

if (event.keyCode==13) { event.keyCode=9; }

}

//-->

</Script>

</head>

<body>

<fieldset>

<table width="100%" border="1" cellpadding="4" cellspacing="3">

<form name="form1">

<tr>

<td width="25%">設(shè)定時間:</td>

<td width="75%"><input type="text" name="time" size="20" value="" onkeypress="ResponseKeyPress()" />

<select name="mod_time">

<option value="mod_minute">分鐘</option>

<option value="mod_second">秒鐘</option>

</select>

</td>

</tr>

<tr>

<td>功能選擇:</td>

<td>

<input type="radio" name="operation" value="rWin" checked="checked" />重啟

<input type="radio" name="operation" value="cWin" />關(guān)機(jī)

</td>

</tr>

<tr>

<td colspan="2" style="text-align:right">

<input type="button" name="StartButton" value=" 應(yīng)用 " onclick="Timer_Start()" />

<input type="button" name="StopButton" value=" 取消 " onclick="Timer_Stop()" />

<input type="button" name="ExitButton" value=" 退出 " onclick="Timer_Quit()" />

</td>

</tr>

</form>

</table>

</fieldset>

<div id="footerinfo">

<div id="left"></div>

<div id="right">

作者:黑蝦

</div>

</div>

</body>

</html>

如果保存后發(fā)現(xiàn)不能運行一般是編碼的問題,可以用記事本保存,也可以直接從本站下載

更多信息請查看IT技術(shù)專欄

更多信息請查看腳本欄目
易賢網(wǎng)手機(jī)網(wǎng)站地址:hta 定時關(guān)機(jī)重啟實現(xiàn)代碼
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請考生以權(quán)威部門公布的正式信息和咨詢?yōu)闇?zhǔn)!

2025國考·省考課程試聽報名

  • 報班類型
  • 姓名
  • 手機(jī)號
  • 驗證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 加入群交流 | 手機(jī)站點 | 投訴建議
工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號
云南網(wǎng)警備案專用圖標(biāo)
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號:hfpxwx
咨詢QQ:526150442(9:00—18:00)版權(quán)所有:易賢網(wǎng)
云南網(wǎng)警報警專用圖標(biāo)