尋找網路卡韌體版本

尋找網路卡韌體版本

我需要使用 CMD、Powershell 或任何其他方式找出 IBM Windows Server 2008 上 NIC 的韌體版本。

答案1

據我所知,這並不是 2008 年的原產地。我會查看 NIC 供應商提供的命令列實用程式。您需要安裝他們的管理軟體才能使用它們。

  1. 對於 Broadcom NIC,我會嘗試“BACScli”命令
  2. 對於英特爾網卡,我會嘗試“prosetcl”命令

有關英特爾命令列工具的更多詳細信息,請參閱http://www.intel.com/support/network/sb/CS-029966.htm

這些命令可能能夠提取韌體訊息,因為它們的 GUI 對應命令可以顯示此資訊。如果這些命令將提取您需要的數據,您應該能夠在 powershell 腳本中使用它們。如果需要,可以使用 WinRM 或 PS (sysinternals) 命令遠端使用它們。

答案2

我懷疑這很難做到......以下任何一個看起來像韌體版本嗎?

這是 SiSoft Sandra 在我的電腦上顯示的內容:

SiSoftware Sandra

Device Information
Device Type : Ethernet Network
Device ID : Bus 5, Device 0, Function 0
Official Device Name : Broadcom NetXtreme 57xx Gigabit Controller
OEM Device Name : Broadcom NetXtreme BCM5761 Gigabit Ethernet PCIe
Hardware ID : VEN_14E4 DEV_1681 REV_10
Device Name : Dell Broadcom NetXtreme 57xx Gigabit Controller
Product ID : VEN_1028 DEV_0293 REV_10
Revision : B1

Power Management Features
Version : 1.02
Supports Clock Slow-down : Yes
Supports D1 PM State : No
Supports D2 PM State : No
Supports PME# : Yes
Supports PME Clock : No

PCIe Capabilities
Version : 2.00
Port : 0
Physical Slot Implemented : No
Phantom Functions Support : No
Maximum Payload Size : 256
Width : x1 / x1
Speed : 2.5Gbps / 2.5Gbps

Device Capabilities
Line Cache Size : 16bytes
I/O Range : No
Memory Range : Yes
Bus Master Capable : Yes
Special Cycle Recognition : No
Memory Write and Invalidate : No
Video Palette Snoop : No
Parity Error Response : No
Address/Data Stepping : No
System Error Line : No
Fast back-to-back Transactions : No
Detects Parity Errors : No
Supports System Error Line : No
Supports Parity Line : No
User Defined Format : No
66MHz Bus Support : No
New Capability List : Yes
Device Select Timing : Fast
Multi-Function Device : No
Header : 00
Interface : 00

Hardware Resources
Memory Range : F5DE0000
Memory Range : F5DF0000
INT Pin : A#
Dynamic Management : Yes

答案3

在 Powershell 中嘗試:

Get-NetAdapter | fl name, InterfaceDescription, DriverFileName, DriverDate, DriverVersionString, NdisVersion

這將傳回 DriverVersion 和韌體 NDiS 版本。

輸出範例:

name                 : Ethernet 4
InterfaceDescription : Lenovo USB Ethernet
DriverFileName       : dlcdcncm6_x64.sys
DriverDate           : 2013-07-03
DriverVersionString  : 7.3.49014.0
NdisVersion          : 6.20

name                 : Wi-Fi
InterfaceDescription : Intel(R) Centrino(R) Advanced-N 6205
DriverFileName       : NETwew00.sys
DriverDate           : 2012-10-03
DriverVersionString  : 15.5.6.48
NdisVersion          : 6.30

答案4

使用 Broadcom 實用程式 - BACS,將視圖變更為 NDIS 並反白顯示適配器

相關內容