Hi -
Came upon a question earlier about default SHARES, specifically in Windows 7.
This screenshot is from the "shared directories" option in Altap Salamander 3.0 Beta 2 release -
Are all 4 listed in screenshot defaults?
I'm looking for a script or app to list the shared sub-dirs/ files -- particularly those under c:\users.
I found a post at TechNet Forums by Elden Christensen of MSFT, but am not familiar enough with the NET SHARE command to know what this one does in particular, i.e., what to modify to list v. actually change share -
Thanks for your help,
John
Came upon a question earlier about default SHARES, specifically in Windows 7.
This screenshot is from the "shared directories" option in Altap Salamander 3.0 Beta 2 release -
Are all 4 listed in screenshot defaults?
I'm looking for a script or app to list the shared sub-dirs/ files -- particularly those under c:\users.
I found a post at TechNet Forums by Elden Christensen of MSFT, but am not familiar enough with the NET SHARE command to know what this one does in particular, i.e., what to modify to list v. actually change share -
Post #2 - http://social.technet.microsoft.com.../thread/54bc24e3-1d18-4f23-9cb2-dbd541c56a8f/We have removed the Share Subdirectories option, as we have changed the way shares work on clusters. It is now totally integrated and gives the same functionality as a stand-alone server. With a simple script you run once you can get the same behavior, here it is:
How to achieve the same behavior of Share Subdirectories:
1. Open cmd.exe and change to the directory where all sub directories are to be shared.
2. Type the following: for /d %d in (*.*) do Net Share %d=G:\%d
a. Note: Be sure to change G:\ to the appropriate drive and path to share.
See this blog for additional information:
http://blogs.msdn.com/clustering/archive/2008/09/03/8923059.aspx
Thanks!!
Elden Christensen
Lead Program Manager
Windows Failover Cluster Group
Microsoft Enterprise Server Products
Thanks for your help,
John