If you need to obtain a list of shared resources on a Microsoft Windows system, such as shared folders, you can use a Windows Management Instrumentation Command-line (WMIC) command,
wmic share get
. E.g., wmic share get
caption,name,path
, which will show the share names on the system
on which the command is issued and the full directory path for shared
folders associated with those sharenames.
[ More Info ]