查找 NIC 固件版本

查找 NIC 固件版本

我需要使用 CMD、Powershell 或任何其他方式找出 IBM Windows Server 2008 上的 NIC 的固件版本。我还应该注意,我无法重新启动服务器以进入 BIOS 或使用 IBM Update Express

答案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 并突出显示适配器

相关内容