当前位置:   article > 正文

批处理命令_if "%1" == "h" goto begin

if "%1" == "h" goto begin

隐藏批处理运行的窗口

@echo off
if "%1" == "h" goto begin
mshta vbscript:createobject("wscript.shell").run("%~nx0 h",0)(window.close)&&exit
:begin
echo 这里开始运行你的命令

定时启动关闭exe程序

@echo off
echo wscript.sleep wscript.arguments(0)*1000>delay.vbs
if "%1"=="h" goto begin
mshta vbscript:createobject("wscript.shell").run("""%~nx0""h",0)(window.close)&&exit
:begin
start test.exe
delay.vbs 10
taskkill /f /im test.exe
delay.vbs 5
goto begin

删除文件
del /f /s /q delay.vbs

AT用法

定时启动关闭某个服务
以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 /s
如果是让机器重新启动则使用
shutdown /r
文件存为c:\\autoshut.bat
2.建立自动执行条目:
at 22:00 c:\\autoshut.bat
这样每天晚上22:00机器都会自动关机,在关机前会进行30秒钟的提示.
shutdown程序是win2k的Rkit中自带的,windowxp缺省自带。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/76154
推荐阅读