1

我想禁用所有网络适配器:

我看到它可以通过系统命令 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(); 
4

1 回答 1

1

我用

netsh interface set interface "Local Area Connection 2" ENABLED

它对我来说很好,并启用了“本地连接 2”

可能你可能会在你的代码中使用这种方式,它应该适合你。

于 2014-05-21T09:25:01.297 回答