Windows Server 2008 还是 Vista?
有什么简单(易于实施)的方法可以通过 Python 脚本检查我使用的是 Windows Vista 还是 Windows Server 2008?
platform.uname()
对于两个版本给出相同的结果。
What is an easy (to implement) way to check whether I am on Windows Vista or Windows Server 2008 from a Python script?
platform.uname()
gives the same result for both versions.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如另一个问题中提到的,万无一失的(我认为)方法是使用 win32api.GetVersionEx(1)。 版本号和产品类型的组合将为您提供当前运行的 Windows 平台。 例如。 版本号“6.*”和产品类型 VER_NT_SERVER 的组合是 Windows Server 2008。
您可以在 msdn
As mentioned in the other question the foolproof (I think) way is to use win32api.GetVersionEx(1). The combination of the version number and the product type will give you the current windows platform you're running on. Eg. the combination of version number "6.*" and product type VER_NT_SERVER is Windows Server 2008.
You can find information about the different combinations you can get at msdn