by jeremy@bondbyte.com | Apr 23, 2014 | Uncategorized
I tried using Session state today in a web part I was developing, it failed, the session was always null. I followed the best practices, verified it was enabled in web.config, it wasn’t, so I turned it on. EnableSessionState=”true”. I tried my...
by jeremy@bondbyte.com | Apr 23, 2014 | Uncategorized
Here’s a collection of tools that are handy to have installed on your front end servers. The first thing you’ll want to do is install a Windows SDK. The SDK package comes with a lot tools, specifically GacUtil.exe Server 2012...
by jeremy@bondbyte.com | Apr 23, 2014 | Uncategorized
was setting up a HyperV instance for development. Grabbed a Server 2012 Eval, threw SQL on it and installed SharePoint Foundation 2013. I was running through the configuration wizard and it was at step 8 or 9, creating Sample Data… and it threw the error below....
by jeremy@bondbyte.com | Apr 23, 2014 | Uncategorized
//Provision Usage App $UP = Get-SPServiceApplicationProxy | where {$_.TypeName -like “Usage*”} $UP.Provision() //Starts the Services $hostA = Get-SPEnterpriseSearchServiceInstance -Identity “spapp” Start-SPEnterpriseSearchServiceInstance...
by jeremy@bondbyte.com | Apr 23, 2014 | Uncategorized
Keep getting error when I try to delete a site with sub sites. This PowerShell script works well. # Completely deletes the specified Web (including all subsites) function RemoveSPWebRecursively( [Microsoft.SharePoint.SPWeb] $web) { Write-Debug “Removing site...
by jeremy@bondbyte.com | Apr 23, 2014 | Uncategorized
Another good tutorial. http://read-more.su/2012/05/publishing-associated-content-type-value.html