博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C# 修改电脑DNS和IP方法
阅读量:6148 次
发布时间:2019-06-21

本文共 1839 字,大约阅读时间需要 6 分钟。

///         /// 将IP,DNS设置为自动获取        ///         private void setDHCP()        {            string  _doscmd = "netsh interface ip set address 本地连接 DHCP";            Process p = new Process();            p.StartInfo.FileName = "cmd.exe";            p.StartInfo.UseShellExecute = false;            p.StartInfo.RedirectStandardInput = true;            p.StartInfo.RedirectStandardOutput = true;            p.StartInfo.RedirectStandardError = true;            p.StartInfo.CreateNoWindow = true;            p.Start();            p.StandardInput.WriteLine(_doscmd.ToString());            _doscmd = "netsh interface ip set dns 本地连接 DHCP";            p.StandardInput.WriteLine(_doscmd.ToString());            p.StandardInput.WriteLine("exit");        }        ///         /// 设置IP地址,掩码,网关等        ///         private void setIPaddress()        {            string _ipaddress = "192.168.111.222";            string _submask = "255.255.255.0";            string _gateway = "192.168.111.1";            string _dns1 = "123.1.11.1";                      string  _doscmd = "netsh interface ip set address 本地连接 static " + _ipaddress + " " + _submask + " " + _gateway + " 1";            Process p = new Process();            p.StartInfo.FileName = "cmd.exe";            p.StartInfo.UseShellExecute = false;            p.StartInfo.RedirectStandardInput = true;            p.StartInfo.RedirectStandardOutput = true;            p.StartInfo.RedirectStandardError = true;            p.StartInfo.CreateNoWindow = true;            p.Start();            p.StandardInput.WriteLine(_doscmd.ToString());            _doscmd = "netsh interface ip set dns 本地连接 static " + _dns1;            p.StandardInput.WriteLine(_doscmd.ToString());                               p.StandardInput.WriteLine("exit");        }

  

转载于:https://www.cnblogs.com/wohexiaocai/p/4581759.html

你可能感兴趣的文章
oracle 去掉空格
查看>>
6.13心得
查看>>
Runtime类
查看>>
eclipse decompiler
查看>>
记一个搜索网盘资源的网站
查看>>
jdk1.7和jdk1.8的String的getByte方法的差异
查看>>
java父子进程通信
查看>>
Android ADB server didn't ACK * failed to start daemon * 简单有效的解决方案
查看>>
Olap学习笔记
查看>>
Codeforces Round #431 (Div. 1)
查看>>
如何进行数组去重
查看>>
将标题空格替换为 '_' , 并自动复制到剪切板上
查看>>
List Collections sort
查看>>
Mysql -- You can't specify target table 'address' for update in FROM clause
查看>>
使用局部标准差实现图像的局部对比度增强算法。
查看>>
2017-2018-1 20165313 《信息安全系统设计基础》第八周学习总结
查看>>
《代码敲不队》第四次作业:项目需求调研与分析
查看>>
菜鸡互啄队—— 团队合作
查看>>
HttpWebRequest的GetResponse或GetRequestStream偶尔超时 + 总结各种超时死掉的可能和相应的解决办法...
查看>>
SparseArray
查看>>