Read the WMIC using the xp_cmdshell (if run with T-SQL):
DECLARE @cmd nvarchar(500)
SET @cmd = 'c:\windows\system32\wbem\wmic volume list brief'
EXEC master..xp_cmdshell @cmd
** Don't mistake the ‘stupidity of the crowd’ for the ‘wisdom of the group’! **