How to Find the WWN of an HBA in Windows 2012 R2Published: 28 July 2017 | Written by some jerk | Print | Email | Hits: 249Run this from powershell: Get-WmiObject -class MSFC_FCAdapterHBAAttributes -namespace "root\WMI" | ForEach-Object {(($_.NodeWWN) | ForEach-Object {"{0:x}" -f $_}) -join ":"} Prev Next