Вверх ↑
Ответов: 2125
Рейтинг: 159
#1: 2006-11-20 18:27:32 ЛС | профиль | цитата
set oCollection = GetObject("winmgmts:{impersonationLevel=impersonate}\.
ootcimv2").ExecQuery("select * from Win32_LogicalDisk where DriveType=3")
For Each item In oCollection
s = ""
For Each x In item.Properties_
s = s & x.Name & " = " & x.Value & vbNewLine
Next
MsgBox s
Next
VolumeSerialNumber
После форматирования, конечно, изменится
карма: 1

0