You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
224 B
12 lines
224 B
on Error resume next
|
|
|
|
Set c = GetObject("winmgmts://./root/cimv2:win32_logicaldisk")
|
|
d = c.Derivation_
|
|
|
|
for x = LBound(d) to UBound(d)
|
|
WScript.Echo d(x)
|
|
Next
|
|
|
|
if err <> 0 then
|
|
WScript.Echo Err.Description
|
|
end if
|