The Microsoft Cloud Blog

Expert insights on Microsoft Azure, Cloud Architecture, and Enterprise Technology

sharepoint

22 articles

SharePoint 2013 Error: The filtering process has been terminated

I had just completed a PowerShell scripted deployment of a SharePoint farm and was just performing the final checks when I noticed the following error in the crawl logs. “The filtering process has been terminated” This turned out that because in the PowerShell script I had specified that the SharePoint installation location should be different to… Continue Reading →

Read article

SharePoint 2013: Get User Profile Properties via PowerShell

The following script will iterate through all the user profiles and return the account name. Add-PSSnapin microsoft.sharepoint.powershell; #Load SharePoint User Profile assemblies [System.Reflection.Assembly]::LoadWithPartialName(“Microsoft.SharePoint”) [System.Reflection.Assembly]::LoadWithPartialName(“Microsoft.Office.Server.UserProfiles”) #Get Context $serviceContext = Get-SPServiceContext -Site “[Site Name]” #Instantiate User Profile Manager $userProfileConfigManager = New-Object Microsoft.Office.Server.UserProfiles.UserProfileManager($serviceContext); #Get All User Profiles $profiles = $userProfileConfigManager.GetEnumerator(); #Loop through all user profiles and display account name… Continue Reading →

Read article

Error message when you view an Outlook Web App Web Part in a SharePoint Online site in Office 365: “This content cannot be displayed in a frame”

Over the last couple of weeks I have been working on an Office 365 project, and whilst in general I have been impressed with the SharePoint aspects of Office 365.  There have been a couple of gotchas.  I will be positing a couple of articles dealing with these in more detail.  Anyway, I thought it would be… Continue Reading →

Read article

SharePoint 2010: PowerShell script to retreive Managed Meta Data Service and Terms Store IDs

This script has already been produced in a previous post, but for convenience I thought I would replicate it here. #Get the Site Collection $SiteCollection = Get-SPSite http://%5BSharePoint Site] #Change to you site URL #Get the Term Store ID $TaxSession = Get-SPTaxonomySession -Site $SiteCollection $TermStore = $TaxSession.TermStores[“Managed Metadata Service”] #Change to your service name $TermStore.Id… Continue Reading →

Read article

SharePoint 2010: Standard User Profile Properties

Recently I was asked by one of our developers to provide a list of the standard user properties; this took a bit of time to dig up, as the planning document is 300+ pages. So to save a bit of time in the future I thought I would replicate this information here. User Profile property… Continue Reading →

Read article

SharePoint 2010: An Introduction to Content Types

Content types are a very useful feature of SharePoint 2010 (and earlier versions), especially in regards to organising your documents and content. In effect a content type is a type of generic SharePoint content for example when you click on the new document option in a document library, you are using a document content type,… Continue Reading →

Read article

BizTalk WSS Adapter: HTTP 401.2 – Unauthorized: Logon failed due to server configuration

Continuing my experience of attempting to configure the WSS adapter for a clients BizTalk/SharePoint integration project.  As mentioned in my previous post I was having an authentication issue between the clients SharePoint and BizTalk instances.  The message I was getting back (not in BizTalk unfortunately) was the following 401.2 message. “HTTP 401.2 – Unauthorized: Logon failed due to server… Continue Reading →

Read article

BizTalk WSS Adapter: RequestFailed: The server committed a protocol violation. Section=ResponseHeader Detail=CR must be followed by LF

Whilst attempting to set up the WSS adapter for a client I was receiving the following error when trying to call the WSS adapter web service. “RequestFailed: The server committed a protocol violation. Section=ResponseHeader Detail=CR must be followed by LF” This seemed to me to be an issue where BizTalk was receiving an error that it could not… Continue Reading →

Read article
Page 1 of 2Next →