批处理Bat实现整合定时关机或取消定时关机

@echo off
:start
choice /c:12 /m "输入1为设置定时关机,2为取消定时关机: "
if errorlevel 2 goto cancel
if errorlevel 1 goto shutdown :shutdown
set /p time=请输入分钟数:
set /a time_m=%time%*60
shutdown -s -f -t %time_m% 2>nul
if errorlevel 2 goto reset
@echo %time%分钟后将自动关机
goto end :cancel
shutdown -a
@echo 已经取消定时关机
goto end :reset
shutdown -a
shutdown -s -f -t %time_m%
@echo 系统将在%time%分钟后自动关闭
goto end :end pause

个人觉得这样挺方便的

使用:

1. 新建一个txt, 写入以上命令

批处理Bat实现整合定时关机或取消定时关机

2. 把后缀.txt改成.bat

批处理Bat实现整合定时关机或取消定时关机

3. 运行, 按提示操作即可

上一篇:基于xml的Spring多数据源配置和使用


下一篇:jQuery给CheckBox添加事件