Oh, Mapped Logical Disks, if you need to see where they are pointed to can
be returned by this query against Win32_LogicalDisk,
Win32_MappedLogicalDisk doesn't give you the location pointed to,
Win32_LogicalDisk exposes this information in the ProviderName property.
select * from win32_logicaldisk where driveType = 4
instance of Win32_LogicalDisk
{
Caption = "Z:";
Compressed = FALSE;
CreationClassName = "Win32_LogicalDisk";
Description = "Network Connection";
DeviceID = "Z:";
DriveType = 4;
FileSystem = "NTFS";
FreeSpace = "36341739520";
MaximumComponentLength = 255;
MediaType = 0;
Name = "Z:";
ProviderName = "\\\\products\\public";
Size = "36413280256";
SupportsDiskQuotas = TRUE;
SupportsFileBasedCompression = TRUE;
SystemCreationClassName = "Win32_ComputerSystem";
SystemName = "SCOTTSLAPTOP";
VolumeName = "D_Drive";
VolumeSerialNumber = "16C02CE8";
};