• PowerShell to move email addresses from one mailbox to another (Exchange 2007)

    by  • August 20, 2012 • 0 Comments

    PowerShell snippet to take a set of email addresses from one Mailbox and set them on another. $faxAddresses = Get-Mailbox "MailBox 1" | Select-Object -ExpandProperty EmailAddresses | Where-Object {$_.PrefixString -eq 'smtp' -AND $_.SmtpAddress -like '*fax*'} Get-Mailbox "MailBox 1" | Update-List -Property EmailAddresses -Remove $faxaddresses | Set-Mailbox Get-Mailbox "MailBox 2" | Update-List -Property EmailAddresses -Add $faxaddresses |...

    Read more →

    SharePoint 2010 slow extranet performance

    by  • July 23, 2011 • 0 Comments

    A while back we extending our SharePoint 2010 server to provide an extranet enabling users to access SharePoint across the Internet. The main benefit being that users didn’t have to use VPN to access their content and data. The problem was that the extranet performance was too slow. Part of the SharePoint extranet solution...

    Read more →

    SharePoint 2010 Diagnostics Studio Errors Event ID 6398

    by  • May 17, 2011 • 0 Comments

    Having installed the SharePoint 2010 Diagnostics Studio on a server we were seeing hundreds of events with ID 6398:- Log Name:      Application Source:        Microsoft-SharePoint Products-SharePoint Foundation Event ID:      6398 Task Category: Timer Level:         Critical Description: The Execute method of job definition Microsoft.SharePoint.Diagnostics.SPSqlBlockingReportDiagnosticProvider (ID e0c0213b-63fc-4ede-acc9-7a569ba95812) threw an exception. More information is included below. You do...

    Read more →

    SharePoint 2010 MsiInstaller PeopleILM Errors Event ID 1004, 1001, 1015

    by  • March 28, 2011 • 0 Comments

    After installing the SharePoint 2010 Feb 2011 CU and restarting the server I started seeing MsiInstaller Errors with event id 1004, 1001 and 1015. The event details were:- Source:        MsiInstaller Event ID:      1001 Level:         Warning Keywords:      Classic User:          NETWORK SERVICE Detection of product ‘{90140000-104C-0000-1000-1000000FF1CE}’, feature ‘PeopleILM’ failed during request for component ‘{1681AE41-ADA8-4B70-BC11-98A5A4EDD046}’ Source:        MsiInstaller...

    Read more →

    The type or namespace name ‘LayoutsPageBase’ does not exist in the namespace ‘Microsoft.SharePoint.WebControls’ (are you missing an assembly reference?)

    by  • February 9, 2011 • 0 Comments

    After creating an empty SharePoint 2010 solution in Visual Studio 2010 I added an Application Page to the project but compiling failed and gave me the following error: The type or namespace name ‘LayoutsPageBase’ does not exist in the namespace ‘Microsoft.SharePoint.WebControls’ (are you missing an assembly reference?) Using the object browser in Visual Studio...

    Read more →