如何在 .NET 中更改计算机的主 DNS 后缀?
我正在为新电脑开发一个自动配置应用程序。我设法以编程方式设置所有需要的参数,除了计算机的主 DNS 后缀(请记住,这与网络连接默认 DNS 后缀不同)。
有什么帮助吗?
更新:这里请求的类用于设置 PC 的 IP、子网、网关和 DNS。 http://pastebin.com/fHACwwDV
仅在具有 1 个网络接口的系统中进行了测试,我不知道当有更多 NIC 时它会如何表现。哦,它是 WIP,所以现在除了抛出异常之外没有实现任何错误处理。
I'm working on an auto-configure app for new PC's. I managed to programatically set all the needed parameters, except Primary DNS Suffix of a computer (please remember that this is different from the network connection default DNS suffix).
Any help?
Update: Here's requested class for setting IP, Subnet, Gateway, and DNS of the PC.
http://pastebin.com/fHACwwDV
It was tested only in system having 1 network interface, I don't know how it'll behave when there are more NICs. Oh, and it's WIP, so for now no error handling apart from throwing exception was implemented.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从 msdn 上的搜索来看,您似乎需要使用 设置计算机名称Ex。
pinvoke.net 详细说明了从 C# 访问它需要执行的操作。
From a search on msdn, looks like you'll need to use SetComputerNameEx.
pinvoke.net spells out what you'll need to do to access this from C#.
是的,它成功了。当然,我一如既往地愚蠢,因为我已经设置了主机名。
以下是 vb.net 中主机/后缀更改的完整代码:
Yay, it worked. Of course I'm stupid as always, because I was already setting the host name.
Here's full code for host/suffix change in vb.net: