使用c ++以管理员身份在cmd中运行命令

时间:2017-07-06 14:33:42

标签: c++

如何使用c ++以管理员身份在cmd中运行命令? 我的笔记本上有病毒,每20-30分钟更改一次DNS地址。我想创建自己更改DNS地址的程序。

#include<iostream>
#include<windows.h>
using namespace std;
main()
{
system("netsh interface ip set dns “Ethernet” static 192.168.0.1");
return 0;
}

我需要以管理员身份运行此命令。请帮忙。

0 个答案:

没有答案