Archive

Latest Posts

PowerPivot Gallery Thumbnail Debugging Procedure

I’ve had the odd occasion where the SharePoint PowerPivot thumbnails (in the gallery view) haven’t shown up properly for me, and a while ago I compiled a collection of debugging procedures. I figured I’d share this collection with the world. Some of these were meant more for SP2010, and SQL 2008 / R2, but many …

Read on

Filtering a SharePoint List View by Hyperlink

I recently had a need to filter a SharePoint list view by a hyperlink column and found that unlike most column types in SharePoint, the edit view UI did not provide me with the ability to filter by this column type. It’s an odd choice, but… ok? As it turns out, you can actually create …

Read on

PS Config fails with “The exclusive inplace upgrader timer job failed”

I was working with a client recently and after running some OS updates on their SharePoint servers, I tried to run the Product Config wizard (PSconfig).   The command I was running was as follows. PSConfig.exe -cmd upgrade -inplace b2b -force -cmd applicationcontent -install -cmd installfeatures   Unfortunately, at one point (later in the sequence …

Read on

Fetching a User Using the SharePoint CSOM (via JavaScript)

I tend to need to do this sort of thing a lot recently, and it’s not as simple as looking for a pre-fetched value sitting in the DOM somewhere, so I figured I better blog it and then I’ll know where to find it. Here’s my code (below). All you have to do is call …

Read on

Deleting and Recreating a Service Account in SharePoint

I recently had an adventure with a customer related to the need to delete and recreate a service account in SharePoint, retaining the exact name before and after recreation. Of course, we had to do this without being able to remove it from SharePoint cleanly beforehand. Unfortunately, this didn’t go so smoothly, and the main …

Read on

Checking which Delegate Controls are activated on your site

I recently had the need to determine which delegate controls were activated on my site collection. Unfortunately I quickly discovered there was no easy way to do this in the SharePoint GUI. As such, I went searching on the Google machine, and I came across the article below. It has a great, concise overview of …

Read on

Sending an Email to a SharePoint Group Using Nintex

What I was looking to determine was what would happen if I sent an email to a SharePoint group, as opposed to explicitly defining a set of users in a workflow variable.  Up until now, I’d never really known what would happen when sending email to a SharePoint group, so here’s what I found. As …

Read on