web-dev-qa-db-ja.com

NICファームウェアバージョンの検索

CMD、Powershell、またはその他の方法を使用して、IBM Windows Server 2008上のNICのファームウェアバージョンを確認する必要があります。BIOSに移動したり、IBM Updateを使用したりするためにサーバーを再起動できないことにも注意してください。急行

5
user176320

これは、私が知っている2008年のネイティブではありません。 NICベンダーによって提供されるコマンドラインユーティリティを調べます。それらを使用するには、管理ソフトウェアをインストールする必要があります。

  1. Broadcom NICの場合、「BACScli」コマンドを試します
  2. Intel NICの場合、「prosetcl」コマンドを試します

Intelコマンドラインツールの詳細については、こちらをご覧ください http://www.intel.com/support/network/sb/CS-029966.htm

これらのコマンドは、対応するGUIがこの情報を表示できるため、ファームウェア情報をプルできる場合があります。コマンドが必要なデータを取得する場合は、それらをPowerShellスクリプトで使用できるはずです。また、必要に応じて、WinRMまたはPS(sysinternals)コマンドを使用して、リモートで使用します。

2
SpiderIce

Broadcomユーティリティ-BACSを使用して、ビューをNDISに変更し、アダプターを強調表示します。

0
Gina Dunn

難しいと思います...次のいずれかがファームウェアバージョンのように見えますか?

これが、SiSoft Sandraが私のPCに表示するものです。

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
0
GregC

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
0
TheCleaner