![]() |
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-29 08:05 |
47,816 topics / 349,916 posts / today 0 new / 48,265 members |
| DOS批处理 & 脚本技术(批处理室) » [Original] Post an automatic timing bat Please note that if the content involves specific code or more detailed context, please provide more information for a more accurate translation. The above is a basic translation based on the current content. |
| Printable Version 4,390 / 12 |
| Floor1 scriptor | Posted 2007-01-13 23:21 |
| 银牌会员 Posts 555 Credits 1,187 | |
|
The last time I came, someone asked how to make a program run after a set time. Today I wrote one and posted it, let's improve it together.
[ Last edited by scriptor on 2007-9-14 at 04:07 PM ] |
|
| Floor2 vkill | Posted 2007-01-14 03:06 |
| 金牌会员 Posts 1,744 Credits 4,103 From 甘肃.临泽 | |
|
The building owner, this still depends on whether it's a 12-hour system or a 24-hour system, right!
|
|
| Floor3 scriptor | Posted 2007-01-14 03:14 |
| 银牌会员 Posts 555 Credits 1,187 | |
|
Oh, right.
I forgot. Because mine is in 24-hour format. Then let me think, whether to change it or not. |
|
| Floor4 scriptor | Posted 2007-01-14 03:18 |
| 银牌会员 Posts 555 Credits 1,187 | |
|
Please provide the specific content that needs to be translated. As you haven't provided the actual Chinese text to translate yet, I can't perform the translation. Please share the Chinese text that needs to be converted from Chinese to English.
|
|
| Floor5 piaoye0605 | Posted 2007-01-15 04:16 |
| 新手上路 Posts 9 Credits 18 From 山东 | |
| Floor6 piaoye0605 | Posted 2007-01-15 04:16 |
| 新手上路 Posts 9 Credits 18 From 山东 | |
| Floor7 frankwz | Posted 2007-04-14 09:49 |
| 初级用户 Posts 22 Credits 41 | |
| Floor8 frankwz | Posted 2007-04-14 09:49 |
| 初级用户 Posts 22 Credits 41 | |
| Floor9 gne | Posted 2007-12-31 20:20 |
| 初级用户 Posts 45 Credits 77 | |
|
Still not working...
|
|
| Floor10 HAT | Posted 2007-12-31 21:04 |
| 版主 Posts 5,017 Credits 9,023 | |
|
Can the use of scheduled tasks (at or schtasks) not meet the requirements?
|
|
| Floor11 everest79 | Posted 2007-12-31 22:54 |
| 金牌会员 Posts 1,127 Credits 2,564 | |
|
Scheduled tasks are a risky program
|
|
| Floor12 qita123456 | Posted 2008-04-14 15:12 |
| 新手上路 Posts 5 Credits 12 | |
|
if %time:~0,2% LEQ 5 echo It's time to do something
|
|
| Floor13 xuye | Posted 2008-04-14 19:28 |
| 初级用户 Posts 34 Credits 79 | |
|
This is a scheduled shutdown bat I made by looking at others' batch processing.
@mode con cols=90 lines=35&color 1f @echo off call :cl goto input :1 title Scheduled Shutdown! made by: Xiao Ye 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 then 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 enter again! &goto 1 echo. echo. echo. echo. echo ================Settings 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: Xiao Ye echo. echo=======================Shutdown canceled successfully!!!================== echo. echo. echo. ping -n 2 127.1>nul goto input :4 cls title Function Description made by: Xiao Ye echo. echo.&echo.&echo.&echo.&echo.&echo. echo ※※※※※※※※※※※※※※※※Function Description:※※※※※※※※※※※※※※※※※※※※※※ echo. echo. echo ◇◇◇◇Scheduled Shutdown: The scheduled shutdown function can only be used within the same day. It can enter multiple shutdown times within the same time period, and 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 shutdown time you set is: " in the function menu. echo. echo ◇◇◇◇Cancel Shutdown: Canceling the shutdown is only effective when the shutdown countdown window pops up!! Using it before the window pops up will show 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: Xiao Ye 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 pops up! !) echo. echo. echo. echo The shutdown time you set is: %tim% I tried it and the timing works, and canceling the shutdown also works, but as I explained, canceling the shutdown can only be done when the shutdown countdown window pops up. Is there a way to cancel the scheduled shutdown function by selecting the cancel shutdown key before the countdown window pops up after setting the time. Also, how to modify it so that the last statement is displayed in the function menu only after the set time. Finally, I had such a situation with this bat. I set two shutdown times in the same time period and they were one minute apart. When the first shutdown time came, the shutdown program ran normally, but when it was halfway through the shutdown, a black screen phenomenon occurred. The computer didn't freeze, but couldn't exit the black screen. What's the reason? Hope all the masters can give advice!! Also, after setting the shutdown time, even if the computer restarts after shutdown, it will still shut down when the set time comes. Is that right? |
|
|
[ Contact the Union admin team -
中国DOS联盟 -
Standard version ] Sponsored by ifanr Inc | © 2001–2023 |