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: Determine Moving Mailbox Statistics

  Get Mailbox Move Statistics:     Get-MoveRequest | Get-MoveRequestStatistics | ft displayname,*stat*,perc*,totalmailboxsize     Only In Progress: Get-MoveRequest –MoveStatus InProgress | Get-MoveRequestStatistics | ft displayname,*stat*,perc*,totalmailboxsize   For a constant update: while (1 -eq 1) { Get-MoveRequest | Get-MoveRequestStatistics; Start-Sleep -Seconds 2; Clear-Host; }    

Powerdelivery 2.0 released on chocolatey

There’s never been a better time to get started looking at continuous delivery with PowerShell and TFS than today. Over the weekend I redesigned powerdelivery to have a cleaner syntax, and allow for quicker installation using chocolatey (a system-wide package manager for Windows based on nuget). This topic describes the redesign as well as how…

OpsMgr 2012 SP1: Cannot Install OpsMgr due to OperationsManagerDW database files in a non default location for User Databases – Error Code: 0x80131500

I ran into this issue where the RMSe Installation would fail at the Data warehouse configuration during Operations Manager Setup.  Issue: The install fails at the DW installation….and a warning is seen for the Management Server Install, then subsequent red X Critical Failures below. OS versions = Server 2012 STD SQL version = SQL 2012…

OpsMgr 2012 SP1: Reporting Installation Error: Unable to connect to the Data Access Service for this Management Server

Situation: When running the Operations Manager Installation for Reporting, an error is seen below at the Specify a Management Server page. Operating System = Server 2012 Operations Manager = OpsMgr 2012 SP1 Error: Specify a Management server Enter the name, of a Management server to be used by the Web console and reporting features only.…