科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网服务器频道使用AT命令让Win2K定时执行操作

使用AT命令让Win2K定时执行操作

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

在Win2000中,让系统定时操作比较常用的办法就是启动调度服务后使用at命令,调度服务的启动方法可以从服务,MMC中也可以使用命令行的方式"NET START SCHEDULE"。

来源:中国网管联盟 2008年4月16日

关键字: 批处理 RAS 操作系统 MMC windows 2000 服务器 AT命令

  • 评论
  • 分享微博
  • 分享邮件

  在Win2000中,让系统定时操作比较常用的办法就是启动调度服务后使用at命令,调度服务的启动方法可以从服务,MMC中也可以使用命令行的方式"NET START SCHEDULE".

  at命令的用法如下:

  AT 命令安排在特定日期和时间运行命令和程序。

  要使用 AT 命令,计划服务必须已在运行中。

  AT [\\computername] [ [id] [/DELETE] | /DELETE [/YES]]

  AT [\\computername] time [/INTERACTIVE]

  [ /EVERY:date[,...] | /NEXT:date[,...]] "command"

  \\computername 指定远程计算机。 如果省略这个参数,

  会计划在本地计算机上运行命令。

  id 指定给已计划命令的识别号。

  /delete 删除某个已计划的命令。如果省略 id,

  计算机上所有已计划的命令都会被删除。

  /yes 不需要进一步确认时,跟删除所有作业

  的命令一起使用。

  time 指定运行命令的时间。

  /interactive 允许作业在运行时,与当时登录的用户

  桌面进行交互。

  /every:date[,...] 每个月或每个星期在指定的日期运行命令。

  如果省略日期,则默认为在每月的本日运行。 bitsCN~com

  /next:date[,...] 指定在下一个指定日期(如,下周四)运行命令。

  如果省略日期,则默认为在每月的本日运行。

  "command" 准备运行的 Windows NT 命令或批处理程序。

  用法一,定时启动关闭某个服务

  以RAS服务方例,让该服务在每日19:00启动,次日7:30关闭,AT命令如下:

  AT 19:00 /every:M,T,W,Th,F,S,Su net start ″remote access server″

  AT 7:30 /every:M,T,W,Th,F,S,Su net stop ″remote access server″

  用法二,定时关机

  1.编写一个批处理文件(使用批处理文件的原因是为了以后更灵活的控制而不需要重新建立调度),内容如下:

  shutdown /l

  如果是让机器重新启动则使用

  shutdown /r

  文件存为c:\autoshut.bat

  2.建立自动执行条目:

  at 22:00 c:\autoshut.bat

  这样每天晚上22:00机器都会自动关机,在关机前会进行30秒钟的提示,倒计时的.

  文中用的shutdown程序是win2k的Rkit中自带的,chinaasp网站上好象也有下载,非常好用的.

  这是这个程序的其它用法:

  shutdown [\\computername] [/l] [/a] [/r] [/t:xx] ["msg"] [/y] [/c] [/?] DL@bitsCN_com网管软件下载

  Where:

  \\computername

  Remote computer to shut down. If no name is given but the tool is started with any of the other

  options, the local computer name will be used.

  /L

  Specifies a local shutdown.

  /A

  Quits a system shutdown. This can only be done during the timeout period. If this switch is used,

  all others are ignored.

  /R

  Restart the computer specifed after shutdown.

  /T:xx

  Sets the timer for system shutdown in xx seconds. The default is 20 seconds.

  "msg"

  Specifies an additional message with a maximum of 127 characters, surrounded by quotation marks.

  /y

  Answers questions with "yes".

  /C

  Forces running applications to close.

  Caution

  If you use the /c parameter, Windows 2000 ignores the application’s option to save data that

  might have changed. You will see no File Save dialog box, because Windows 2000 will force the

  application to close. This will result in a loss of all data not previously saved.

  /? (or shutdown without parameters)

  Display help.

  Examples

  Shutdown and reboot a remote computer.

  shutdown \\IMAREMOTECOMPUTER /R

  Shutdown a local computer, closing all applications in 5 seconds.

  shutdown /L /C /T:5

  PS:shutdown程序下载地址为:http://www.pkufo.com/computer/openfile.asp?id=65

  

    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章