摘要: import wmi c = wmi.WMI() for sys in c.Win32_OperatingSystem(): #系统信息 print(sys.Caption) #系统版本号 print(sys.BuildNumber) #32/64位 print(sys.OSArchitecture) #当前系统进程数 print(sys.NumberOfProcesses) #处理器信息 for 阅读全文
posted @ 2019-10-24 16:22 柠檬山竹大西瓜 阅读(678) 评论(0) 推荐(0) 编辑