Menu
Find entries by Category
Find blog entries by date
  May 2025  
Sun Mon Tue Wed Thu Fri Sat
     1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31

Previous    Next    Latest  

How To Add Other File Shares To SBS 2011 Remote Web Access    
Tue, 04 Feb 2014 10:37

One of the features in Microsoft Small Business Server 2011 (SBS 2011) is the Shared Folders functionality in Remote Web Access (RWA) (formerly Remote Web Workplace RWW).

By default the only file shares that are available through this interface are the ones actually shared on the SBS11 server itself.  What if you need to add shares from different member servers?

If you want to open access on other file shares within your domain, perhaps a NAS device, etc. then you can change the default web.config file to explicitly define a list of other shares using the following procedure:

On the SBS 11 server open up C:\Program Files\Windows Small Business Server\Bin\WebApp\RemoteAccess (default location)

Make a backup copy of web.config file (formatted in XML).

Open web.config in notepad, and find SBSStorageProvider

Comment out the following line using <!-- and -->  :

<!-- <wssg.storageProvider type="Microsoft.WindowsServerSolutions.Web.Storage
.SBSStorageProvider, Wssg.Web.StorageProvider" /> -->

Add this line directly below the original:

<wssg.storageProvider type="Microsoft.WindowsServerSolutions.Web.Storage.
FileSystemBasedStorageInformationProvider, Wssg.Web.Internal" shares="\\Server1\Share1" />

This allows you to add one shared server and one folder, but you can add more by changing it like this:

<wssg.storageProvider type="Microsoft.WindowsServerSolutions.Web.Storage.
FileSystemBasedStorageInformationProvider, Wssg.Web.Internal" shares="\\Server1\Share1;\\Server2\Share2;\\Server3\Share3" />

(Replace shares with your own server and share names separated by semicolons)

This article was edited from its original source here: http://www.jacksontechnical.com/article.htm?id=50

Comments  
Your comments