SBS 2011 – RWW 404 File or directory not found in Internet Explorer

1) Open Internet Explorer, and go to your Remote Web Workplace login page. (DO NOT LOG IN YET)
2) Press the “Alt” button which brings up the internet explorer menus
3) Drop down “Tools” and then go to “Compatibility View Settings”.
4) Your internet domain should be in the “Add this website” box, just press the “Add” button, then hit Close.
5) Close out of Internet Explorer, and then go back in and try getting on remotely.

Source: stephenwagner.com

Limit shares available via RWW

Open Notepad as administrator.

Open C:\Program Files\Windows Small Business Server\Bin\WebApp\RemoteAccess\web.config

Find and comment out this line:
<wssg.storageProvider type="Microsoft.WindowsServerSolutions.Web.Storage.SBSStorageProvider, Wssg.Web.StorageProvider" />

Add on next line:
<wssg.storageProvider type="Microsoft.WindowsServerSolutions.Web.Storage.FileSystemBasedStorageInformationProvider, Wssg.Web.Internal" shares="\\Server1\Share1;\\Server2\Share2;" />

Source: JacksonTechnical

Sharepoint KB2580174 Alert remains after PSConfig upgrade

Check Event Viewer for Error 2138 – Drives running out of space.

Sharepoint will report health errors if the C:\ has less space than 2x installed RAM.

To Disable:
SharePoint Central Admin > Monitoring > Health Analyzer > Review rule definitions > under Availability > ‘Drives are running out of free space’

Link: Technet

Exchange 2010 SP1/SP2 – Export mailbox to PST without contacts or other items

Exchange Shell:

Assign Permission:
New-ManagementRoleAssignment -Role "Mailbox Import Export" -User "username"
Logout then log back in.

Run Export Request:
New-MailboxExportRequest -Mailbox username -ExcludeFolders “#Contacts#” -FilePath \\server\share\user.pst

Monitor Status:
Get-MailboxExportRequest | Get-MailboxExportRequestStatistics

Cleanup:
Get-MailboxExportRequest | Remove-MailboxExportRequest

Source: Stevieg

“#Contacts#” can be replaced for excluding other items:
Inbox
SentItems
DeletedItems
Calendar
Contacts
Drafts
Journal
Tasks
Notes
JunkEmail
CommunicationHistory
Voicemail
Fax
Conflicts
SyncIssues
LocalFailures
ServerFailures

Exchange 2010 SP1/SP2 – Export mailbox to PST

Exchange Shell:

Assign Permission – requires logoff/logon before taking effect:
New-ManagementRoleAssignment -Role "Mailbox Import Export" - User "username"

Run Export Request:
New-MailboxExportRequest -Mailbox username -FilePath \\server\share\user.pst

Monitor Status:
Get-MailboxExportRequest | Get-MailboxExportRequestStatistics

Cleanup:
Get-MailboxExportRequest | Remove-MailboxExportRequest

Source: Stevieg