Is it possible to query the LUN ID of a list of windows server?

20,994

Not sure if you've resolved this issue yet...However this may be possible using Powershell.

You can try the same using the The Get-DiskScsiLun function available in Powershell

The Get-DiskScsiLun function uses the following WMI objects: Win32_LogicalDisk, Win32_LogicalDiskToPartition, Win32_DiskDriveToDiskPartition and Win32_DiskDrive.

For more details please refer http://rvdnieuwendijk.com/2012/05/29/powershell-function-to-get-disk-scsi-lun-number/

Cheers!

Share:
20,994

Related videos on Youtube

Matias
Author by

Matias

Python, learning Java

Updated on September 18, 2022

Comments

  • Matias
    Matias almost 2 years

    I'm trying a combination of FCINFO and PSEXEC to get the LUN ID (LUN NUMBER) used by servers, but i cant get this information directly from fcinfo.

    I've also try using WMI until i learned that i should know the wmi namespace of the lun controller installed on each server.

    Is this possible at all?