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.
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…
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…
While the headline does not constitute an emergency for anyone, I want to get this out to as many Office 365 customers and clients as possible! I just got copied on an email to one of my Office 365 clients that begins with: Action needed For the best, richest experience with Office 365, we strongly…
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
Are you a geospatial head? Do you have data that you would like to display on a map and animate over time? If so, Microsoft just announced an exciting new add-in for Excel 2013 called, GeoFlow. You can download the public preview here. GeoFlow supports both 32 bit and 64 bit machines, and can…
Microsoft released rollup 1 for Forefront Unified Access Gateway 2010 Service Pack 3 today. http://support.microsoft.com/kb/2827350
To get a list of SMTP addresses and export to CSV: Get-Mailbox -ResultSize Unlimited |Select-Object DisplayName,PrimarySmtpAddress, @{Name=“EmailAddresses”;Expression={$_.EmailAddresses |Where-Object {$_.PrefixString -ceq “smtp”} | ForEach-Object {$_.SmtpAddress}}} | Export-CSV "C:\Temp\List-SMTP-Address.csv"
The April meeting of the Office 365 International User Group is scheduled for Tuesday April 23rd at 1pm Mountain time/7pm GMT/UTC. This is a milestone event, as this will be on the 1 year anniversary of the first IUG meeting! I will look to have some special for this meeting! See below for a link…
There are a growing number of 3rd party tools available for administering and reporting on Office 365. I am really curious what the core pain points and needs are out there around a tool focused on Office 365. Many of the tools out there are utilizing PowerShell to gather data and report on it as well…
The message tracking tool is very helpful however if you need to work with the data it provides the default interface can be difficult. To get around this you can dump the results to a CSV with these scripts: Dump Message Tracking Results to CSV: get-messagetrackinglog -MessageSubject "Test Message to Verify Tracking…