38

I have a Windows 2008 server with various software packages installed on it.

I want to know what network shares my server is sharing (and I want to know that from within the server, not by trying to access the shares from another computer).

Does anyone know how to do that?

Hennes
  • 65,142
lisa17
  • 1,239

5 Answers5

48

Start -> Run -> compmgmt.msc -> OK.

Computer Management (Local) -> System Tools -> Shared Folders -> Shares.

This will show you all the current shares on the system as well as allow you to control them, change permissions, modify access, etc.

enter image description here

UPDATE: PowerShell offers another way to quickly get all SMB shares on localhost for Windows 7/Server 2012 and later hosts:

PS D:\> get-smbshare

Name   ScopeName Path       Description
----   --------- ----       -----------
ADMIN$ *         C:\WINDOWS Remote Admin
C$     *         C:\        Default share
D$     *         D:\        Default share
E$     *         E:\        Default share
IPC$   *                    Remote IPC
music2myear
  • 41,771
22

From a command prompt, enter the command:

net share

This will show all shares on the system, including hidden.

Gareth
  • 18,809
15

From the Command Prompt you can type:

net view \\servername /all

This should show you all shares on that server even if they are hidden shares.

Gareth
  • 18,809
Sean Ciminello
  • 151
  • 1
  • 2
  • Hey dude, THANK YOU!!

    I was desperately searching for a mechanism for getting list of connected machines and the shares they exported.

    I wish I found this little comment a week ago.

    – Edwin Clement Feb 13 '23 at 11:55
7

A bit simpler than the accepted answer is direct call to the Shared Folders console: Start > Run > fsmgmt.msc

Screenshot of the Shared Folders console

Toto
  • 17,839
2

start > run

\\127.0.0.1

will do the trick

PLEASE NOTE THIS WILL NOT SHOW HIDDEN SHARES.

squareborg
  • 2,445