我想使用快捷方式在 30 分钟后自动关闭 Windows 7/XP,我该如何创建快捷方式,它会询问我时间限制,并且在该时间限制之后它会自动关闭 Windows 7/XP。
答案1
更简单的方法:
创建一个快捷方式,目标为:shutdown /s /f /t 1800
这将导致计算机在 1800 秒后重新启动,并强制关闭所有打开的应用程序(警告:/f 开关将导致您丢失所有未保存的数据)。我使用类似的方法远程重新启动我的工作笔记本电脑和服务器,使用相同的命令。
答案2
编译这个 C 程序,然后 exe 文件就是您正在寻找的文件。如果您喜欢这个,请选择它作为答案。
#include <time.h>
#include <stdio.h>
main() {
int hour,minutes;
long int total;
printf("\nEnter the no.of.hours and minutes for shuting down:");
scanf(" %d %d",&hour,&minutes);
total = hour*60*60 + minutes*60;
sleep(total);
system("C:\\windows\\system32\\shutdown /s /t 10");
return 0;
}