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.

Azure Developer Camps!

Microsoft, Catapult, and PluralSight are presenting a series of Developer Camps across the country.  These are full day, hands on, free, events designed to get you familiar with the Azure platform.  At the end of the day, you will walk away with working code in the cloud.  One lucky participant will also walk away with…

This patch package could not be opened. Contact the application vendor to verify that this is a valid Windows Installer patch package. WSUS Hotfix Update

  Recently I was trying to install hotfixes for Windows Server Update Services (WSUS) but the setup program would immediately fail with this error: This patch package could not be opened. Contact the application vendor to verify that this is a valid Windows Installer patch package. I had this problem with these two updates: An…

Weekly Exchange PowerShell Tip: List ActiveSync Devices

​To get a list of ActiveSync Devices: 2010:   Get-ActiveSyncDevice -ResultSize Unlimited | Select-Object UserDisplayName, Name, DeviceUserAgent | Export-Csv C:\Temp\ActiveSyncDevices.csv   Exch2007:   Get-Mailbox | ForEach {Get-ActiveSyncDeviceStatistics -Mailbox:$_.Identity} | ft DisplayName, Devicetype, DeviceUserAgent, LastSuccessSync    Get ActiveSync information for specific user:   Get-ActiveSyncDeviceStatistics -Mailbox blye | ft DeviceType, DeviceUserAgent, LastSuccessSync