判断操作系统的位数有一下几种方法: 1. 特征值IntPtr 2. WMI 1的实现如下: public static int GetOSInfo() { if (IntPtr.Size == 8) { return 64; } else { return 32; } } 但是有问题,如果应用运行的是x86 的模式,判断就会有误,如何解决? 添加一下代码: public static bool Is64BitWindows { get { // this is a 64-bit process
查看python位数 # python Python 2.7.5 (default, Nov 6 2016, 00:28:07) [GCC 4.8.5 20150623 (Red Hat 4.8.5-11)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import platform
UUID 是系统的唯一识别码,永远不会重复,比较有用. Windows 篇 在命令提示符下输入wmic 再输入csproduct 或 csproduct list full wmic:rootcli>csproduct list full Linux 篇,(以 CentOS为例) yum install epel-release -y yum install facter --enablerepo=epel -y facter uuid