1
wbsdty331 2016-02-10 14:09:20 +08:00 1
所有浏览器进程都得有一遍吧
firefox.exe chrome.exe iexplore.exe opera.exe 还有更多 |
2
ebony0319 2016-02-10 14:09:20 +08:00 via Android 1
shutdown -s -t 0
|
3
htfy96 2016-02-10 14:14:33 +08:00 1
#include <cstdlib>
std::system("taskkill /f firefox.exe"); //大概是这样?查一下 taskkill 语法然后补全浏览器进程名 std::system("killall firefox"); //linux, killall 命令不是每个发行版都有,调内核太麻烦了 |
4
rootsir 2016-02-10 17:45:50 +08:00
shutdown -s -f -t 1
|