以编程方式关闭Windows XP

时间:2010-12-27 09:37:51

标签: windows-xp

为Windows xp shutdown编写一个C程序 (当我们编译该程序时,我们的系统将被关闭)

5 个答案:

答案 0 :(得分:3)

假设您希望在运行时退出Windows,则可以使用ExitWindowsExInitiateSystemShutdown

答案 1 :(得分:1)

只需使用shutdown命令。

答案 2 :(得分:1)

#include <stdio.h>

void main() {
  printf("Now shutting down...");
  system("shutdown /s");
}

答案 3 :(得分:0)

应该是

system("shutdown -s");

或者如果你想设定时间

system("shutdown -s -t 30");

但是,它不会在编译时关闭,而是在执行时关闭

P.S。:不要忘记包含process.h

答案 4 :(得分:0)

system("shutdown -s -t 0");

立即关闭。