Archive

Latest Posts

How to Change the Domain of Multiple SharePoint Accounts

Very recently I had to change a bunch of accounts from one domain to another in SharePoint. Rather than doing this piecemeal for each individual account, I decided to write a simple script to do this for me. Since I couldn’t find this online, I figured I’d demonstrate how I did it.     Start …

Read on

Import-SPWeb: Could not find language

I was recently working on a customer SharePoint site when I was running into this issue with trying to import new data into their environment.     Import-SPWeb : Could not find language 1040     It was truly very frustrating as I had already installed what I thought was the correct language pack. Actually …

Read on

The Specified User or Domain Group Was Not Found

I was seeing some odd behaviour on a client site a while back. Below is a list of the various issues I was seeing.     When trying to insert a link into a web page     I was seeing the following error.     Also in the ULS, I was seeing the following …

Read on

How to Determine Which SharePoint Users Have a Profile Picture

I recently needed a means of getting a list of all users who had a profile picture associated with their SharePoint account (well, the client was actually more interested in knowing who didn’t have a profile picture, but this result below worked for them). Below is a simple PowerShell script for being able to get …

Read on

Unable to Delete Search Service Application Databases

A while back I was working on a customer’s broken SharePoint farm (and trust me, this was not a healthy beast), and I ran into a situation where I couldn’t delete the Search Service Application (though I resolved that separately), and subsequently the associated databases. The databases were a huge PITA (Pain In The Arse) …

Read on

How to Get the SharePoint Farm Build Version Using PowerShell

This is surprisingly easy to do actually, it’s just 2 simple lines of PowerShell. $farm = Get-SPFarm$farm.BuildVersion The result will be something like this below. Then all you need to do is take that number and you can look at the version numbers over at Todd Klindt’s blog. He always keeps these lists up to …

Read on

How to Determine Your SharePoint 2013 Search Index Location (and Default Search Index Location)

During the setup of your Search service application, if you created your search service using PowerShell, you’re be able to specify a default search index location similar to the lines below. $NewIndexPath = “D:\TOP\SearchIndex” New-SPEnterpriseSearchIndexComponent –SearchTopology $newtopology -SearchServiceInstance $hostWF1 -IndexPartition 0 -RootDirectory $NewIndexPath However, believing that you’ve set it properly, and actually being able to …

Read on