中国DOS联盟论坛

China DOS Union

-- Unite DOS · Advance DOS · Grow DOS --
Union site: www.cn-dos.net Forum site: www.cn-dos.net/forum
Guest | Log in | Register | Members | Search | China DOS Union
中国DOS联盟论坛
The time now is 2026-08-09 03:00
47,811 topics / 349,895 posts / today 0 new / 48,253 members
DOS批处理 & 脚本技术(批处理室) » Use the At command to schedule a shutdown!
Printable Version  2,134 / 8
Floor1 liminghack Posted 2008-06-03 13:23
初级用户 Posts 25 Credits 51 From 学校
We can use AT commands to shut down at a specified date and time!
For example: 1. To shut down at 22:00 every day, you can use the following command (it has been passed in XP's cmd)
at 22:00 /every:m,t,w,tu,f,s,su shutdown -s -t 20
2. To shut down at 8:00 on Monday every week
at 8:00 /every:m shutdown -s -t 20
(The number after -t can be customized, and the -c "" parameter can also be used. Enter the prompt in "")
Floor2 hacker56 Posted 2008-06-03 20:32
新手上路 Posts 1 Credits 2
Excuse me, how to cancel?
Floor3 lxmxn Posted 2008-06-20 19:53
版主 Posts 4,938 Credits 11,386
Originally posted by hacker56 at 2008-6-3 20:32:
How to cancel?

shutdown -a
Floor4 Michael Posted 2008-06-21 19:42
钻石会员 Posts 3,041 Credits 10,054
What you said upstairs is wrong.
Floor5 zergstorm Posted 2008-06-22 18:01
新手上路 Posts 9 Credits 17
A very useful little trick!
Floor6 zhym399 Posted 2008-06-22 23:26
初级用户 Posts 14 Credits 23
I'll give it a try, thanks.
Floor7 regvip2008 Posted 2008-06-23 10:53
初级用户 Posts 87 Credits 187
Originally posted by hacker56 at 2008-6-3 08:32 PM:
How to cancel?



sc config schedule start= demand&&sc stop schedule
Floor8 tempuser Posted 2008-06-25 14:04
高级用户 Posts 261 Credits 547
Originally posted by liminghack at 2008-6-3 13:23:
We can use AT commands to implement shutting down at a specified date and time!
For example: 1. To shut down at 22:00 every day, you can use the following command (verified in XP's cmd)
at 22:00 /every:m,t,w,tu,f,s,su sh ...

I set it up the same way, but why doesn't it work?
How to check if the AT scheduled task is executed? Whether it is executed correctly?
Floor9 xuye Posted 2008-06-29 12:30
初级用户 Posts 34 Credits 79
Quote:
Originally posted by hacker56 at 2008-6-3 20:32:
How to cancel it?


You can close the service as regvip2008 said, but you can't load tasks before the service is enabled.

Another method is to delete the task.
Open Start - Control Panel - Task Scheduler, see the customized task, delete it!
I wrote a principle bat before, now send the code for everyone to see (originally wanted to say "research" but thought it had no technology so changed it )

Code:
@mode con cols=90 lines=35&color 1f
@echo off
call :cl
goto input
:1
title Scheduled Shutdown! made by: Xiaoye
cls
echo Current time: %date% , %time%
echo\&echo Please enter the scheduled shutdown time. (Need 24-hour format, such as 17:30 : Please use English punctuation)&echo\&echo\
echo If you want to return to the menu function, press 0 and enter!
echo.
set tim=
set /p tim=Please enter the shutdown time:
if "\%tim%\"=="\0\" call :cl&goto input
at %tim% /interactive shutdown -s -c "To cancel the shutdown, please select the cancel shutdown function in the function menu!!" >nul
if errorlevel 1 cls&echo * Incorrect input, please re-enter! &goto 1
echo.
echo.
echo.
echo.
echo ================Setting successful!!!==============================
echo.
echo ======Remember to save documents or other things that need to be saved before shutdown! ^_^=====
ping -n 2 127.1>nul
call :cl
goto input
:2
shutdown -a
cls
echo.
echo.
echo.
title Shutdown canceled successfully! made by: Xiaoye
echo.
echo=======================Shutdown canceled successfully!!!==================
echo.
echo.
echo.
ping -n 2 127.1>nul
goto input
:4
cls
title Function Description made by: Xiaoye
echo.
echo.&echo.&echo.&echo.&echo.&echo.
echo ※※※※※※※※※※※※※※※※Function Description:※※※※※※※※※※※※※※※※※※※※※※
echo.
echo.
echo ◇◇◇◇Scheduled Shutdown: The scheduled shutdown function can only be used on the same day. It can enter multiple shutdown times in the same time period. The system will automatically start the shutdown times in chronological order (that is, after the first shutdown time is canceled, the second shutdown time will be automatically started, and so on!). After setting the shutdown time, you can view the set shutdown time under the "The shutdown time you set is:" in the function menu.
echo.
echo ◇◇◇◇Cancel Shutdown: Canceling the shutdown is only effective when the shutdown countdown window is popped up!! Using it before the window is popped up will display that the shutdown is canceled successfully, but the scheduled shutdown function is not actually canceled, and the scheduled shutdown function will still be started when the time comes! !
echo.
echo ◇◇◇◇Exit: Exit the program window!!
echo.
echo.&echo.&echo.&echo.&echo.&echo.&echo.&echo.&echo.&echo\&echo.&echo.
pause
goto input

:3
cls&exit
:input
cls
title Function Code Number Selection!
cls
call :card
echo\&echo\&echo\
echo Please enter the function code number:
echo.
set sel=
set /p sel=
if "\%sel%\"=="" goto input
call :%sel%
if errorlevel 1 cls&echo\&echo\&echo\&echo\&echo ========= ☆★Incorrect command entered, trying to fool me? !★☆======&call :cl&goto input
:cl
for /l %%i in (1,1,40) do (
echo\
for /l %%a in (1,1,250) do ver>nul
)
goto :eof
:card
title Function Menu! made by: Xiaoye
echo\&echo\&echo.
echo\&echo\&echo Function Menu:
echo ▲△△△△△△△△△△△△△△△△△△
echo ▲ ▲
echo ▲ 1=Scheduled Shutdown ▲
echo ▲ ▲
echo ▲ 2=Cancel Shutdown ▲
echo ▲ ▲
echo ▲ 3=Exit ▲
echo ▲ ▲
echo ▲ 4=Function Description ▲
echo ▲ ▲
echo △△△△△△△△△△△△△△△△△△▲
echo.
echo.
echo.
echo (Note: The code number on the left of the equal sign is the function code number, please enter the code number on the left!&echo\
echo The cancel shutdown function is only effective when the shutdown countdown window is popped up!!)
echo.
echo.
echo.
echo The shutdown time you set is: %tim%
[ Contact the Union admin team - 中国DOS联盟 - Standard version ]
Sponsored by ifanr Inc | © 2001–2023