I am working with a Windows Server 2003 R2 server and have been running an SSIS package to gather volume information using the following statement withina WMITask:
select Name, Label, BlockSize, Capacity, FreeSpace, Compressed, DriveType, DeviceID, FileSystem, SerialNumber from Win32_Volume
Recently, the windows server team added a new volume to the server. (There are now 8 volumes on the server). From everything I can see, the configuration/permissions is the same as the previously existing volumes. However, the Win32_volume select statement above only returns the Name and DeviceID for the new volume.
Can anyone suggest anything I could look at to determine why the information is missing from the new volume?
Thank you in advance for your help.