Logical Disk Drive Properties

Please use the below script to get the properties of logical disk drives from the target machine

import os
print os.popen('wmic logicaldisk get caption, description, drivetype, providername, volumename').read()

Outcome:

Logical Disk Drive Properties.png