![]() Loading |
| VBScript |
| JavaScript |
| Powershell |
Search Options: List Volume Mount Points
|
||
|
' 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 :: | ||