1. 程式人生 > >C++ shut down a computer

C++ shut down a computer

can lee nds seconds sleep exce uil rar 對話框

前陣子有朋友問我,怎麽用C語言寫一個小程序,控制電腦關機。這個我真的不懂,這幾天閑著,就上網搜了搜,整理一下。

開發工具是Code::Blocks 16.01,Windows 7 x64操作系統

 1 #include <windows.h>
 2 
 3 int main()
 4 {
 5     system("shutdown -s -f -t 3600");
 6     Sleep(5000);
 7     system("shutdown -a");
 8 
 9     return 0;
10 }

另外,需要添加鏈接庫:libwsock32.a

右擊工程,選“Build options...”

技術分享圖片

在“Project build options”對話框中,選“Linker settings” > “Add”,鏈接庫“libwsock32.a”位於目錄:CodeBlocks\MinGW\lib\

之後,一路yes、ok、ok

技術分享圖片


關於“Shutdown”的參考:https://technet.microsoft.com/en-us/library/bb491003.aspx

-s : Shuts down the local computer.

-a : Aborts shutdown. Ignores other parameters, except -l and ComputerName. You can only use -a during the time-out period.

-f : Forces running applications to close.

-t xx : Sets the timer for system shutdown in xx seconds. The default is 20 seconds.


嗯,時間不早了,準備睡覺,試試下面的代碼,看看效果。

1 #include <windows.h>
2 
3 int main()
4 {
5     system("shutdown -s -f -t 60");
6 
7     return 0;
8 }

C++ shut down a computer