Windows: List Shared Drives and Folders from the Command Line

Contributor Icon Contributed by Rob Rogers  
Tag Icon Tagged: Windows  

Want a quick list of shared drives and folders on your Windows PC or Server? By using the Windows Instrumentation command-line interface (WMIC) you can create a quick list or even generate a text file or HTM file for printing. This Tech-Recipe applies to Windows XP Professional, Windows Vista, Windows Server 2003 and Windows Server 2008.


1. Open a command prompt.

2. Execute the following command:
wmic share get caption,name,path

A list of all shared drives and folders will appear, including the path for each shared folder.

If you want to generate a text or HTM file for printing, execute the following:

to generate a textfile:
/output:d:\Shared.txt share get caption,name,path

to generate a HTM file:
/output:d:\Shared.htm share get caption,name,path

make sure to change the location and filename(d:\Shared.txt or d:\Shared.htm) to the desired values.

 

1 Comment -


  1. Command-line user said on December 15, 2010

    Actually, you just have to type “net share”
    “net use” lists what you’re using while “share” is what you’re sharing.

 

RSS feed for comments on this post. TrackBack URL

Leave a comment -