Catapult, a Quisitive company, is a Microsoft-focused solutions and services firm that specializes in imagining, building and sustaining digital transformation and cloud-based solutions that people love to use. Catapult has consistently been recognized as a leading Microsoft Partner with 10 Advanced Specializations and 17 Microsoft competencies. Recent accolades include 2020 MSUS Partner Award Winner Azure – DevOps, Top Microsoft 365 Security Partner for FY20, and being named a finalist of the Data Analytics 2020 Microsoft Partner of the Year Award. Catapult has offices nationwide.

Weekly Exchange PowerShell Tip: Mailbox Sizes

I often get requests on how large our Exchange mailboxes are, or who is getting near their mailbox limit. This one liner PowerShell Cmdlet will pull the name and mailbox size in MB and export it to a CSV for easy sorting with Excel:  Get-Mailbox | Get-MailboxStatistics | Select-Object DisplayName,{$_.TotalItemSize.Value.ToMB()} | export-csv -path C:\<FILENAME>.csv   …

SharePoint 2010 – Session “WSSUSAGESESSION14” failed to start with the following error: 0xC0000022 AND Session “WSSTRACESESSION14” failed to start with the following error: 0xC0000022

I recently added an application server to a SharePoint 2010 farm and was receiving these two errors every minute. Session "WSSUSAGESESSION14" failed to start with the following error: 0xC0000022 Session "WSSTRACESESSION14" failed to start with the following error: 0xC0000022 As a result, I also found that SharePoint’s log files were completely empty, but only on…