本软件功能为切换有线和无线网络,
同时启用或停用某项服务.
string args = "interface set interface WLAN enable";
System.Diagnostics.ProcessStartInfo start = new System.Diagnostics.ProcessStartInfo("netsh", args);
start.UseShellExecute = false;
start.CreateNoWindow = true;
System.D
1