Python中怎么遠(yuǎn)程獲取Windows主機(jī)信息,針對(duì)這個(gè)問題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問題的小伙伴找到更簡(jiǎn)單易行的方法。
10年積累的網(wǎng)站設(shè)計(jì)、成都網(wǎng)站建設(shè)經(jīng)驗(yàn),可以快速應(yīng)對(duì)客戶對(duì)網(wǎng)站的新想法和需求。提供各種問題對(duì)應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識(shí)你,你也不認(rèn)識(shí)我。但先網(wǎng)站設(shè)計(jì)后付款的網(wǎng)站建設(shè)流程,更有東平免費(fèi)網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。
獲取Windows主機(jī)信息
WMI(Windows Management Instrumentation) 是一項(xiàng)核心的Windows管理技術(shù),WMI模塊可用于獲取Windows內(nèi)部信息。WMI作為一種規(guī)范和基礎(chǔ)結(jié)構(gòu),通過它可以訪問、配置、管理和監(jiān)視幾乎所有的Windows資源,比如用戶可以在遠(yuǎn)程計(jì)算機(jī)器上啟動(dòng)一個(gè)進(jìn)程;設(shè)定一個(gè)在特定日期和時(shí)間運(yùn)行的進(jìn)程;遠(yuǎn)程啟動(dòng)計(jì)算機(jī);獲得本地或遠(yuǎn)程計(jì)算機(jī)的已安裝程序列表;查詢本地或遠(yuǎn)程計(jì)算機(jī)的Windows事件日志等等。
下面的代碼是獲取Windows主機(jī)相關(guān)信息。
import wmi import osimport socketw = wmi.WMI()#獲取電腦使用者信息for CS in w.Win32_ComputerSystem(): #print(CS) print("電腦名稱: %s" %CS.Caption) print("使用者: %s" %CS.UserName) print("制造商: %s" %CS.Manufacturer) print("系統(tǒng)信息: %s" %CS.SystemFamily) print("工作組: %s" %CS.Workgroup) print("機(jī)器型號(hào): %s" %CS.model) print("") #獲取操作系統(tǒng)信息for OS in w.Win32_OperatingSystem(): #print(OS) print("操作系統(tǒng): %s" %OS.Caption) print("語言版本: %s" %OS.MUILanguages) print("系統(tǒng)位數(shù): %s" %OS.OSArchitecture) print("注冊(cè)人: %s" %OS.RegisteredUser) print("系統(tǒng)驅(qū)動(dòng): %s" %OS.SystemDevice) print("系統(tǒng)目錄: %s" %OS.SystemDirectory) print("") #獲取電腦IP和MAC信息for address in w.Win32_NetworkAdapterConfiguration(ServiceName = "e1dexpress"): #print(address) print("IP地址: %s" % address.IPAddress) print("MAC地址: %s" % address.MACAddress) print("網(wǎng)絡(luò)描述: %s" % address.Description) print("") #獲取電腦CPU信息for processor in w.Win32_Processor(): #print(processor) print("CPU型號(hào): %s" % processor.Name.strip()) print("CPU核數(shù): %s" % processor.NumberOfCores) print("") #獲取BIOS信息for BIOS in w.Win32_BIOS(): #print(BIOS) print("使用日期: %s" %BIOS.Description) print("主板型號(hào): %s" %BIOS.SerialNumber) print("當(dāng)前語言: %s" %BIOS.CurrentLanguage) print("") #獲取內(nèi)存信息for memModule in w.Win32_PhysicalMemory(): totalMemSize = int(memModule.Capacity) print("內(nèi)存廠商: %s" %memModule.Manufacturer) print("內(nèi)存型號(hào): %s" %memModule.PartNumber) print("內(nèi)存大小: %.2fGB" %(totalMemSize/1024**3)) print("") #獲取磁盤信息for disk in w.Win32_DiskDrive(): diskSize = int(disk.size) print("磁盤名稱: %s" %disk.Caption) print("硬盤型號(hào): %s" %disk.Model) print("磁盤大小: %.2fGB" %(diskSize/1024**3)) #獲取顯卡信息for xk in w.Win32_VideoController(): print("顯卡名稱: %s" %xk.name) print("") #獲取計(jì)算機(jī)名稱和IPhostname = socket.gethostname()ip = socket.gethostbyname(hostname)print("計(jì)算機(jī)名稱: %s" %hostname) print("IP地址: %s" %ip)
輸出結(jié)果如下圖所示:
關(guān)于Python中怎么遠(yuǎn)程獲取Windows主機(jī)信息問題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識(shí)。