How can you change Network settings (IP Address, DNS, WINS, Host Name) with code in C# - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T04:04:45Z http://stackoverflow.com/feeds/question/209779 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/209779/how-can-you-change-network-settings-ip-address-dns-wins-host-name-with-code 4 How can you change Network settings (IP Address, DNS, WINS, Host Name) with code in C# rathkopf 2008-10-16T18:48:37Z 2008-10-17T15:59:44Z <p>I am developing a wizard for a machine that is to be used as a backup of other machines. When it replaces an existing machine, it needs to set its IP address, DNS, WINS, and host name to match the machine being replaced.</p> <p>Is there a library in .net (C#) which allows me to do this programatically?</p> <p>There are multiple NICs, each which need to be set individually.</p> <p><strong>EDIT</strong></p> <p>Thannk you <a href="http://stackoverflow.com/questions/209779/how-can-you-change-network-settings-ip-address-dns-wins-host-name-with-code-in-c#209822">TimothyP</a> for your example. It got me moving on the right track and the quick reply was awesome.</p> <p>Thanks <a href="http://stackoverflow.com/questions/209779/how-can-you-change-network-settings-ip-address-dns-wins-host-name-with-code-in-c#209983">balexandre</a>. Your code is perfect. I was in a rush and had already adapted the example TimothyP linked to, but I would have loved to have had your code sooner.</p> <p>I've also developed a routine using similar techniques for changing the computer name. I'll post it in the future so subscribe to this questions <a href="http://stackoverflow.com/feeds/question/209779" rel="nofollow" title="RSS Feed">RSS feed</a> if you want to be informed of the update. I may get it up later today or on Monday after a bit of cleanup.</p> http://stackoverflow.com/questions/209779/how-can-you-change-network-settings-ip-address-dns-wins-host-name-with-code/209822#209822 4 Answer by TimothyP for How can you change Network settings (IP Address, DNS, WINS, Host Name) with code in C# TimothyP 2008-10-16T19:01:11Z 2008-10-16T19:01:11Z <p>Hi,</p> <p>I hope you don't mind me sending you to an example, but this is really a perfect example: <a href="http://www.codeproject.com/KB/cs/oazswitchnetconfig.aspx" rel="nofollow">http://www.codeproject.com/KB/cs/oazswitchnetconfig.aspx</a></p> http://stackoverflow.com/questions/209779/how-can-you-change-network-settings-ip-address-dns-wins-host-name-with-code/209983#209983 5 Answer by balexandre for How can you change Network settings (IP Address, DNS, WINS, Host Name) with code in C# balexandre 2008-10-16T19:46:36Z 2008-10-16T19:46:36Z <p>very easy...</p> <p>just made this in 20 minutes (add to set up VM first) :)</p> <pre><code>using System; using System.Management; namespace WindowsFormsApplication_CS { class NetworkManagement { /// &lt;summary&gt; /// Set's a new IP Address and it's Submask of the local machine /// &lt;/summary&gt; /// &lt;param name="ip_address"&gt;The IP Address&lt;/param&gt; /// &lt;param name="subnet_mask"&gt;The Submask IP Address&lt;/param&gt; /// &lt;remarks&gt;Requires a reference to the System.Management namespace&lt;/remarks&gt; public void setIP(string ip_address, string subnet_mask) { ManagementClass objMC = new ManagementClass("Win32_NetworkAdapterConfiguration"); ManagementObjectCollection objMOC = objMC.GetInstances(); foreach (ManagementObject objMO in objMOC) { if ((bool)objMO["IPEnabled"]) { try { ManagementBaseObject setIP; ManagementBaseObject newIP = objMO.GetMethodParameters("EnableStatic"); newIP["IPAddress"] = new string[] { ip_address }; newIP["SubnetMask"] = new string[] { subnet_mask }; setIP = objMO.InvokeMethod("EnableStatic", newIP, null); } catch (Exception) { throw; } } } } /// &lt;summary&gt; /// Set's a new Gateway address of the local machine /// &lt;/summary&gt; /// &lt;param name="gateway"&gt;The Gateway IP Address&lt;/param&gt; /// &lt;remarks&gt;Requires a reference to the System.Management namespace&lt;/remarks&gt; public void setGateway(string gateway) { ManagementClass objMC = new ManagementClass("Win32_NetworkAdapterConfiguration"); ManagementObjectCollection objMOC = objMC.GetInstances(); foreach (ManagementObject objMO in objMOC) { if ((bool)objMO["IPEnabled"]) { try { ManagementBaseObject setGateway; ManagementBaseObject newGateway = objMO.GetMethodParameters("SetGateways"); newGateway["DefaultIPGateway"] = new string[] { gateway }; newGateway["GatewayCostMetric"] = new int[] { 1 }; setGateway = objMO.InvokeMethod("SetGateways", newGateway, null); } catch (Exception) { throw; } } } } /// &lt;summary&gt; /// Set's the DNS Server of the local machine /// &lt;/summary&gt; /// &lt;param name="NIC"&gt;NIC address&lt;/param&gt; /// &lt;param name="DNS"&gt;DNS server address&lt;/param&gt; /// &lt;remarks&gt;Requires a reference to the System.Management namespace&lt;/remarks&gt; public void setDNS(string NIC, string DNS) { ManagementClass objMC = new ManagementClass("Win32_NetworkAdapterConfiguration"); ManagementObjectCollection objMOC = objMC.GetInstances(); foreach (ManagementObject objMO in objMOC) { if ((bool)objMO["IPEnabled"]) { if (objMO["Caption"].Equals(NIC)) { try { ManagementBaseObject newDNS = objMO.GetMethodParameters("SetDNSServerSearchOrder"); newDNS["DNSServerSearchOrder"] = DNS.Split(','); ManagementBaseObject setDNS = objMO.InvokeMethod("SetDNSServerSearchOrder", newDNS, null); } catch (Exception) { throw; } } } } } /// &lt;summary&gt; /// Set's WINS of the local machine /// &lt;/summary&gt; /// &lt;param name="NIC"&gt;NIC Address&lt;/param&gt; /// &lt;param name="priWINS"&gt;Primary WINS server address&lt;/param&gt; /// &lt;param name="secWINS"&gt;Secondary WINS server address&lt;/param&gt; /// &lt;remarks&gt;Requires a reference to the System.Management namespace&lt;/remarks&gt; public void setWINS(string NIC, string priWINS, string secWINS) { ManagementClass objMC = new ManagementClass("Win32_NetworkAdapterConfiguration"); ManagementObjectCollection objMOC = objMC.GetInstances(); foreach (ManagementObject objMO in objMOC) { if ((bool)objMO["IPEnabled"]) { if (objMO["Caption"].Equals(NIC)) { try { ManagementBaseObject setWINS; ManagementBaseObject wins = objMO.GetMethodParameters("SetWINSServer"); wins.SetPropertyValue("WINSPrimaryServer", priWINS); wins.SetPropertyValue("WINSSecondaryServer", secWINS); setWINS = objMO.InvokeMethod("SetWINSServer", wins, null); } catch (Exception) { throw; } } } } } } } </code></pre> <p>ohhh, you already had something ... :( well, was fun to me at least ;)</p>