11

How do I find all the folders that are shared on Windows Server 2008?

Raj More
  • 327
  • 1
  • 3
  • 11

4 Answers4

23

You can open a command shell and type:

net share
Maxwell
  • 5,026
  • 1
  • 25
  • 31
  • 1
    I also just found out that I could go to Start\Programs\Administrative Tools\Share and Storeage Management for this as well. – Raj More Jun 24 '09 at 16:01
9

A quick way is to insert

StorageMgmt.msc

in your start box. This opens the Share and Storage Management Console on Windows Server 2008.

alt text

splattne
  • 28,348
  • 19
  • 97
  • 147
3

In powershell you can use the following:

gwmi -Class Win32_Share -ComputerName MyServerName | sort name
λ Jonas Gorauskas
  • 373
  • 1
  • 4
  • 9
1

If you need to know which shared folder corresponds which folder on your system, execute: compmgmt.msc

which shared folder corresponds to system folder

Pulketo
  • 11
  • 1