Contact Info

Crumbtrail

ActiveXperts.com » Administration » Scripts » WMI » VBScript

List all shares on local computer using credentials of currently logged on user - WMI VBScript sample

The foundations for Manageability in Windows 2019/2016/2012/2008 and Windows 10/7/XP are Windows Management Instrumentation (WMI; formerly WBEM) and WMI extensions for Windows Driver Model (WDM).

ActiveXperts Network Monitor provides the ability to build monitor check routines based on WMI. ActiveXperts has collected more than a hundred WMI samples. You can use these samples as a base for new check routines you can write yourself.

On this site, you can find many WMI samples.

The List all shares on local computer using credentials of currently logged on user WMI class can be used in ActiveXperts Network Monitor to monitor your servers.


List all shares on local computer using credentials of currently logged on user

Example(s)

  Option Explicit

ListShares()
WScript.Echo vbCrlf & "Ready."

Sub ListShares()
    Dim strObject
    Dim colShares
    Dim objWMIService, objShare

    Set objWMIService = GetObject( "winmgmts:" )
    Set colShares = objWMIService.ExecQuery( "Select * from Win32_Share" )
    For Each objShare In colShares
        Wscript.Echo objShare.Name & " [" & objShare.Path & "]"
    Next
End Sub