如何检测本地网络中电脑的Windows类型
我写了一个WinForms应用程序,在本地网络中如何知道当前电脑的操作系统是否是服务器Windows? 谢谢。
I write a WinForms app,in local network how can understand that current pc's OS is server Windows or not?
thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Windows 有特定版本:
操作系统版本
并查看这里:
OperatingSystem.Platform 属性
there are specific versions of windows:
Operating system versions
and have a look here:
OperatingSystem.Platform Property
您应该使用
System.OperatingSystem osInfo = System.Environment.OSVersion;
。要了解版本号的含义,您可以查看此知识库文章。You should use
System.OperatingSystem osInfo = System.Environment.OSVersion;
. To understand what the version numbers mean, you can take a look at this KB article.