SharePoint Dragons

Nikander & Margriet on SharePoint

Monthly Archives: May 2014

Setting another application pool for PowerPivot using PowerShell

The title says it all:

# Change application pool for specific service application
$appPool = Get-SPServiceApplicationPool | where { $_.Name -eq “SharePoint – PowerPivot Application Pool” }

$serviceApp = Get-SPServiceApplication -Name “ODH PowerPivot Service Application”
$serviceApp.ApplicationPool = $appPool
$serviceApp.Update()

Setting up a sharepoint 2013 dev environment

We’ve updated the Reporting Services (SSRS) section of this TechNet Wiki article: http://social.technet.microsoft.com/wiki/contents/articles/15289.sharepoint-2013-creating-a-development-environment.aspx , so check it out!