Loading |
VBScript |
JavaScript |
Powershell |
Search Options: List Volume Mount PointsContent of List Volume Mount Points.vbsMD5 Hash: 809CE51012AABD08C3139E25037C69DE |
||
' Description: Enumerates all the volume mount points on a computer.
strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set colItems = objWMIService.ExecQuery _ ("SELECT * FROM Win32_MountPoint") For Each objItem In colItems WScript.Echo "Directory: " & objItem.Directory WScript.Echo "Volume: " & objItem.Volume WScript.Echo Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |