`
0769
  • 浏览: 83667 次
  • 性别: Icon_minigender_1
  • 来自: 东莞
社区版块
存档分类
最新评论

一个定时重启关机的小程序

阅读更多
此小程序只实现了定时重启或关机功能,我代表原作者欢迎大家增强它,哈哈.

期待



将此,复制到文本里,保存为*.hta格式
献给喜欢hta语言的朋友





<html>
<head>
<title>♀Windows系统计时器♀</title>
<meta http-equiv="content-type" content="text/html;charset=gb2312">
<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\">提示:系统计时重启功能已启用,请注意保存!</span>"; 
                }
                else { 
                    $Oper_str="<span style=\"color:red\">提示:系统计时关闭功能已启用,请注意保存!</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为重启操作系统
                }
                else {
                    $Flag=1;    //1为关闭操作系统
                }
                OperateWin32($Flag);
                getObject("left").innerHTML="<span style=\"color:red\">提示:正在执行预定操作!</span>";
                document.title="正在执行预定操作";
            }
        }
    }
}
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系统计时器♀";
}
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("请正确设定一个时间值!  ");
        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%">设定时间:</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" />关机
                </td>
            </tr>
            <tr>
                <td colspan="2" style="text-align:right">
                    <input type="button" name="StartButton" value=" 应用 " 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>
分享到:
评论

相关推荐

    定时重启关机的小程序

    综上所述,"定时重启关机的小程序"结合了系统控制和用户友好的特性,通过编程技术实现了定时重启和关机的自动化,同时也具备截图功能,为服务器管理和日常使用提供了便利。这样的小程序在实际应用中具有广泛的用途,...

    定时关机重启的小程序

    5. **用户界面(UI)**:为了便于用户配置,定时关机重启小程序通常会提供一个友好的用户界面,让用户输入关机或重启的时间,选择执行频率(如每天、每周一次),以及设置其他自定义选项。 6. **安全性与权限**:...

    定时关机小程序

    总的来说,定时关机小程序是一个实用的小工具,它利用易语言的特性以及Windows系统服务,为用户提供方便快捷的定时关机和重启功能。尽管可能存在的杀毒软件误报问题需要用户自行权衡,但在合理使用和了解风险的情况...

    定时关机---自制小程序

    定时关机小程序基于Borland C++ Builder(简称BCB)开发,这是一种强大的Windows应用程序开发环境,允许开发者使用C++语言编写程序,并提供丰富的控件和库支持。BCB的使用使得这个小程序能够高效且稳定地实现定时...

    定时开关机小程序,方便开关机

    总结,定时开关机小程序是一个实用的工具,它结合了操作系统内置的定时服务或第三方工具,使得计算机可以在指定时间自动开关机。这种技术广泛应用于各种场景,提高了效率,节约了资源,并且简化了用户的日常操作。

    vc++ 定时关机小程序

    本项目中提到的"vc++ 定时关机小程序"是一个利用VC++编写的小型实用程序,它的主要功能是设置计算机在特定时间自动执行关机、立即关机或重启操作。 在Windows操作系统中,这些功能通常通过调用系统API(应用程序...

    java 定时执行任务 定时关机 定时重启

    使用Java Swing写的一个小程序,用来定时关机、定时重启、定时执行某一个应用程序。执行时调用cmd命令执行的。其他的,就没什么了,最后用exe4j把jar打包成了exe文件,在本地测能用,不知道其他地方是否能用,内部有...

    定时自动关机或重启

    例如,在Windows系统中,我们可以使用`schtasks`命令或`Task Scheduler`服务创建一个定时任务,指定在特定时间执行关机指令。而在Linux系统中,我们可以利用`cron`定时器配合`shutdown`命令达到相同的效果。 二、...

    定时关机小程序定时关机酷

    《定时关机小程序:定时关机酷》 在日常使用计算机的过程中,我们有时需要让电脑在特定的时间自动关机,以节省电力或者避免长时间运行导致的硬件过热。这时,一款名为“定时关机酷”的小程序便能派上用场。这款小...

    winform定时关机小程序

    【winform定时关机小程序】是一款基于C#编程语言开发的简单应用,它利用Windows操作系统内置的cmd.exe命令行工具来实现计算机的定时关机或重启功能。在本文中,我们将深入探讨该程序的设计原理、核心代码以及如何...

    定时自动关机程序

    2. **定时重启**:除了关机,程序还支持定时重启功能,对于需要定期系统维护或更新的用户来说,这一功能十分便捷。 3. **定时注销**:对于长时间使用电脑的用户,定时注销功能可以帮助他们定期休息,保护视力,提高...

    VC 定时重启、关机或注销程序.rar

    5. **程序设计模式**:为了将这个小程序扩展为一个更完善的关机助手软件,你可以考虑采用设计模式,如观察者模式(Observer Pattern)来监听定时器事件,或者工厂模式(Factory Pattern)来创建不同类型的定时任务。...

    Windows系统定时关机(重启)程序

    用VB 编写的小程序 实现Windows系统(95/98/2000/xp/vista/win7/以及服务器windows系统均可)的定时关机和重新启动,无需安装,单击运行,小巧方便。程序编写,难免存在不足,如有软件漏洞,造成信息损失,系统故障,...

    定时关机重启的小软件

    -- &lt;br/&gt;/*------------------------------------------------------------------------------- &lt;br/&gt;Description:一个用于定时重启或关闭计算机的小工具,适用于Windows 2K/XP/2003 Author:Billgates...

    定时关机定时重启程序

    【新】托盘信息可提示,可定时重启 可进行定时自动关机的小软件,部分杀毒软件会误报,请放心使用

    vista可用定时关机小程序

    定时关机小程序的工作原理通常是通过Windows的任务计划程序或注册表编辑器来设置一个自动执行的任务,当达到设定的时间点时,该程序会触发计算机关机命令。用户可以根据自己的需要,选择立即关机、延迟关机或在特定...

    C# 定时关机小程序

    总的来说,这个C#定时关机小程序是一个实用的学习案例,通过它,开发者可以深入理解如何与操作系统交互、如何处理时间和事件,以及如何构建简单的控制台应用程序。对于想要进一步探索C#编程的人来说,这是一块很好的...

    Delphi编写定时关机小程序

    在这个主题中,我们将探讨如何使用Delphi编写一个简单的定时关机小程序。这个程序的核心功能是设定一个特定的时间,然后在指定时间到达时自动关闭计算机。 首先,我们需要了解Delphi的编程基础。Delphi的界面设计...

Global site tag (gtag.js) - Google Analytics