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

link|improve this question

50% accept rate
You should give your question a more meaningful title. – David Spillett Jun 24 '09 at 16:11
feedback

4 Answers

up vote 11 down vote accepted

You can open a command shell and type:

net share

link|improve this answer
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
feedback

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

link|improve this answer
feedback

In powershell you can use the following:

gwmi -Class Win32_Share -ComputerName MyServerName | sort name
link|improve this answer
feedback

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

which shared folder corresponds to system folder

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.