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.
15 lines
244 B
15 lines
244 B
on Error resume next
|
|
|
|
while true
|
|
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
|
|
|
|
wend
|