This discussion has been locked. The information referenced herein may be inaccurate due to age, software updates, or external references.
You can no longer post new replies to this discussion. If you have a similar question you can start a new discussion in this forum.

Windows Volume Disk Drive Letter

Is there any property of a volume that contains the windows disk drive i..e C:\ and not the value in the format <drive letter> 'LABEL: <SERIAL number> stuff also?

Parents Reply Children
  • Thanks  ! Really useful. Had a look at this general SWQL query lists the all fields for FixedDisk and mount-points (I should have included mount points as we use them):

    SELECT TOP 1000 VolumeId, Status, Caption, RawCaption, FullName, StatCollection, VolumeIndex, VolumeType_Value, VolumeType, PollingType_Value, PollingType, VolumeDescription, DeviceId, DiskSerialNumber, InterfaceType, VolumeSize, VolumeSpaceUsed, DiskQueueLength, DiskTransfer, DiskReads, DiskWrites, TotalDiskIops, RelatedNode, RequestInventory, PollState_Value, PollState, AgentId, AgentOsType, EngineId, Id, DisplayName, Description, InstanceType, Uri, InstanceSiteId
    FROM Cortex.Orion.Volume
    WHERE VolumeType = 'FixedDisk' or VolumeType = 'MountPoint'

    Note:  I often wonder why the thinking behind the decision to treat physical/virtual memory as a volume was with Solarwinds?!

    The main fields that would hold the window Drive Letter on its own or with other data are

    So, RawCaption looks like the field to user to account for both MountPoints and Drive Letters. Here's a more concise query:

    SELECT TOP 1000 VolumeId, Caption, RawCaption, DeviceId,FullName, VolumeType, VolumeDescription
    FROM Cortex.Orion.Volume
    WHERE VolumeType = 'FixedDisk' or VolumeType = 'MountPoint'
    ORDER BY RawCaption