python寫的用WMI檢測windows系統資訊的指令碼

來源:互聯網
上載者:User

    閑來無聊,用python寫了一個檢測windows系統硬體資訊的指令碼,主要就是用WMI模組來完成,分享給大家,希望對大家有所協助。linux的系統資訊直接用shell即可擷取,這裡不做介紹。擷取主要檢測內容為:系統平台,記憶體,硬碟硬體資訊詳細的之前寫了一個,大家參考),CPU資訊,網卡資訊等。

 
  1. #!/usr/bin/env python 
  2. # -*- coding: utf-8 -*- 
  3. import wmi 
  4. import sys,time,platform 
  5.  
  6. def get_system_info(os): 
  7.     """  
  8.     擷取作業系統版本。  
  9.     """  
  10.     print 
  11.     print "Operating system:" 
  12.     if os == "Windows": 
  13.         c = wmi.WMI () 
  14.         for sys in c.Win32_OperatingSystem(): 
  15.             print '\t' + "Version :\t%s" % sys.Caption.encode("GBK") 
  16.             print '\t' + "Vernum :\t%s" % sys.BuildNumber 
  17.  
  18. def get_memory_info(os): 
  19.     """  
  20.     擷取實體記憶體和虛擬記憶體。  
  21.     """  
  22.     print 
  23.     print "memory_info:" 
  24.     if os == "Windows": 
  25.         c = wmi.WMI () 
  26.         cs = c.Win32_ComputerSystem()  
  27.         pfu = c.Win32_PageFileUsage()  
  28.         MemTotal = int(cs[0].TotalPhysicalMemory)/1024/1024 
  29.         print '\t' + "TotalPhysicalMemory :" + '\t' + str(MemTotal) + "M" 
  30.         #tmpdict["MemFree"] = int(os[0].FreePhysicalMemory)/1024  
  31.         SwapTotal = int(pfu[0].AllocatedBaseSize) 
  32.         print '\t' + "SwapTotal :" + '\t' + str(SwapTotal) + "M" 
  33.         #tmpdict["SwapFree"] = int(pfu[0].AllocatedBaseSize - pfu[0].CurrentUsage) 
  34.  
  35. def get_disk_info(os):  
  36.     """  
  37.     擷取物理磁碟資訊。  
  38.     """  
  39.     print 
  40.     print "disk_info:" 
  41.     if os == "Windows": 
  42.         tmplist = []  
  43.         c = wmi.WMI () 
  44.         for physical_disk in c.Win32_DiskDrive(): 
  45.             if physical_disk.Size: 
  46.                 print '\t' + str(physical_disk.Caption) + ' :\t' + str(long(physical_disk.Size)/1024/1024/1024) + "G" 
  47.  
  48. def get_cpu_info(os):  
  49.     """  
  50.     擷取CPU資訊。  
  51.     """  
  52.     print 
  53.     print "cpu_info:" 
  54.     if os == "Windows": 
  55.         tmpdict = {}  
  56.         tmpdict["CpuCores"] = 0  
  57.         c = wmi.WMI ()  
  58.         for cpu in c.Win32_Processor():             
  59.             tmpdict["CpuType"] = cpu.Name  
  60.         try:  
  61.             tmpdict["CpuCores"] = cpu.NumberOfCores  
  62.         except:  
  63.             tmpdict["CpuCores"] += 1  
  64.             tmpdict["CpuClock"] = cpu.MaxClockSpeed     
  65.         print '\t' + 'CpuType :\t' + str(tmpdict["CpuType"]) 
  66.         print '\t' + 'CpuCores :\t' + str(tmpdict["CpuCores"]) 
  67.  
  68.  
  69. def get_network_info(os):  
  70.     """  
  71.     擷取網卡資訊和當前TCP串連數。  
  72.     """  
  73.     print 
  74.     print "network_info:" 
  75.     if os == "Windows": 
  76.         tmplist = []  
  77.         c = wmi.WMI ()  
  78.         for interface in c.Win32_NetworkAdapterConfiguration (IPEnabled=1):  
  79.                 tmpdict = {}  
  80.                 tmpdict["Description"] = interface.Description  
  81.                 tmpdict["IPAddress"] = interface.IPAddress[0]  
  82.                 tmpdict["IPSubnet"] = interface.IPSubnet[0]  
  83.                 tmpdict["MAC"] = interface.MACAddress 
  84.                 tmplist.append(tmpdict)  
  85.         for i in tmplist: 
  86.             print '\t' + i["Description"] 
  87.             print '\t' + '\t' + "MAC :" + '\t' + i["MAC"] 
  88.             print '\t' + '\t' + "IPAddress :" + '\t' + i["IPAddress"] 
  89.             print '\t' + '\t' + "IPSubnet :" + '\t' + i["IPSubnet"] 
  90.         for interfacePerfTCP in c.Win32_PerfRawData_Tcpip_TCPv4():  
  91.                 print '\t' + 'TCP Connect :\t' + str(interfacePerfTCP.ConnectionsEstablished)  
  92.  
  93. if __name__ == "__main__": 
  94.     os = platform.system() 
  95.     get_system_info(os) 
  96.     get_memory_info(os) 
  97.     get_disk_info(os) 
  98.     get_cpu_info(os) 
  99.     get_network_info(os) 


運行結果如下:

 

650) this.width=650;" border="0" alt="" src="http://www.bkjia.com/uploads/allimg/131228/12362A0I-0.jpg" />

 

本文出自 “王偉” 部落格,請務必保留此出處http://wangwei007.blog.51cto.com/68019/1033760

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.