[Reprint]
The AT command is the command in Windows XP, which can also be comparable to "Scheduled Tasks" in Windows, and in terms of planning arrangements, tasks management, work transactions, the AT command has more powerful features. The AT command runs commands and programs on the specified computer at the specified time and date.
We can enter the AT command in Start → Run, let's take a look at some instance analysis of the AT command.
1, timing shutdown
Command: at 21:00 shutdown -s -t30
After the command runs, it is 21:00, and the computer will appear "System Shutdown" dialog and automatically shut down by default for 30 seconds.
2, regular reminder
Command: AT 12:00 Net Send 10.10.36
.122 The time to date with friends is coming, hurry up!
Where Net Send is a Windows internal program that can send a message to other users on the network, a computer. 10.10.36.122 is the IP address of the machine computer. This feature is also known as "Implied Service" in Windows.
3, automatic running batch file
If the company's data is important, it is required to back up at the specified date / time, then run:
Command: at 1:00 AM / EVERY: SATURDAY MY_BACKUP.BAT
In this way, at 1:00 in each SaturDay (Saturday), the computer is scheduled to start my_backup.bat batch file. My_BACKUP.BAT is a batch file you have compiled, which contains multiple commands that are fully backed up of the system.
4. Cancel the scheduled plan
Command: AT 5 / Delete
Sometimes, you have arranged the plan may temporarily change so you can use the above command to delete the program (5 is the identification number assigned to the scheduled command). Of course, after deleting the schedule, you can rearrange it.