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.
_________________BEGIN Connect.ps1________________________ $LiveCred = Get-Credential $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $LiveCred -Authentication Basic –AllowRedirection Import-PSSession $Session -AllowClobber connect-msolservice -credential $LiveCred #Remove-PSSession $Session __________________END Connect.ps1_________________________ The above script connects to two services: (1) Azure Active Directory remote powershell and (2) Exchange Online remote powershell. This is useful because the former is required…
Had a strange issue where a user mailbox was created in Office 365 before Dirsync was enabled. After dirsync was enabled and the domain name was validated, the same primary SMTP alias existed in two places: (1) on-premise where the real mailbox resided and (2) in the cloud where the POC/Pilot mailbox temporarily resided. The…
Problem A client was recently upgraded from SharePoint 2010 to SharePoint 2013 and noticed that, by default, the Arial font option is no longer available in the font drop-down list of the "Format Text" tab in the ribbon when interacting with the rich text editor. This is odd because it was present in SharePoint…
Now you can trial 100 Azure AD Premium Licenses for 90 days. Not sure what will happen after the 90 days but go get them! Login to your Azure Subscription, go to Active Directory and select your domain: Select licenses and you can activate the trial!
Problem I needed to start the new “App Management Service” in Central Admin on SharePoint 2013 but the “Manage services on server” menu option was completely missing even though I’m a Farm Administrator. Solution It seems this menu option will only show up if IE is running in Administrator mode. Just right click on…
So yesterday I was creating a new Web Application in my SharePoint 2013 development environment only to see the page had timed out during it’s creation. When I refreshed the page I could see the new Web App in the list via Central Admin but when I checked IIS there was no corresponding site. It…
Microsoft today launched a new website covering the roadmap for Office 365, http://office.microsoft.com/en-us/products/office-365-roadmap-FX104343353.aspx. This is great, now you can see what new features and functionality has been launched, is rolling out and in development. One of the cool new features that is in the Rolling Out section is the ability to opt in to being…
If you’ve been having a hard time finding the Hyperlinks report in SharePoint Designer 2013, you’re not alone. Up until now, I thought it was removed from the product! Thanks to Heather Masters for pointing this out. The steps below will get you to the report. With a SharePoint site open, find and edit a…
I maintain a rollup table of project metrics, which get updated on a frequent basis. This table contains a lot of calculations and data from multiple sources, which first populates a TABLE variable. Once all of the calculations and aggregate data sources have been completed, I want to update my project metrics table with the…
Did you know that you can use a SQL Query to join together a SQL Table with a Table-valued Function into a single result set? Here’s how: I have created a Function that contains several calculations and returns some standard Project Metrics: CREATE FUNCTION [dbo].[fnGetProjectMetrics] ( @ProjectId int ) RETURNS @results table ( [ActivityStartDate] datetime , [ActivityEndDate] datetime ,…