我想禁用所有网络适配器:
我看到它可以通过系统命令 netsh 来完成。
当我运行以下命令时,出现错误。
C:\Windows\system32>netsh interface set interface name="Local Area Connection 2" admin=DISABLED
Area is not an acceptable value for connect.
The parameter is incorrect.
似乎命令行解析器无法获取间距。如果使用单引号(而不是双引号),也会发生同样的情况。
我需要你的帮助大师。
顺便说一句,我的代码是 C#,我尝试了很多来自网络的示例,但都没有奏效。
System.Diagnostics.ProcessStartInfo psi =
new System.Diagnostics.ProcessStartInfo(
"netsh",
"interface set interface name=\"" + interfaceName + "\" admin=enabled");
System.Diagnostics.Process p = new System.Diagnostics.Process();
p.StartInfo = psi;
bool result = p.Start();