我正在研究一个热点制造商应用程序,我正在使用c ++在cmd中执行netsh命令,但为此我需要cmd的管理权限。我使用了系统(runas \ user :),但这会产生未知错误。
我的管理员用户:the_annoying_
PC NAme:Unknown_God
using namespace std;
int main ()
{
string name;
cout << "Enter Name of Wifi Hotspot:" << endl;
cin >> name;
string pass1="0",pass2="1";
while(pass1!=pass2)
{
cout << "Enter the password" << endl;
cin >> pass1;
cout << "Re-enter the password" << endl;
cin >> pass2;
if(pass1!=pass2)
{
cout << "Please enter same passwords" << endl;
}
}
cout << "Working..." << endl;
string command="netsh wlan set hostednetwork mode=allow ssid=" + name + "key=" + pass1;
const char *command1=command.c_str();
cout << "Creating Wifi Hotspot using given Credentials" << endl;
system("runas /user:the_annoying_ command1");
string comm="netsh wlan start hostednetwork";
const char *command2=comm.c_str();
system("runas /user:the_annoying_ command2");
cout << "Hotspot Sucessfully Created" << endl;
}
我认为最简单的解决方案是以管理员身份运行已编译的应用程序,所有子进程也将以Admin权限执行(因此system()的过程)。
#include <iostream>
{
system("whoami");
return 0;
}
sudo ./test => root
./test =>用户名
在Windows上应该是一样的。