I was recently asked by a client for a way to find out what features are activated as site and site collection level. The following PowerShell is the easiest way I know: if ((Get-PSSnapin -Name “microsoft.sharepoint.powershell” -ErrorAction SilentlyContinue) -eq $null ) { Write-Host “Adding SharePoint Snap-in” -ForegroundColor Cyan; Add-PSSnapin microsoft.sharepoint.powershell -ErrorAction SilentlyContinue; } else { Read More
Month: October 2014
Excel Tips & tricks
I use Excel a lot, always have done and probably always will do. I find it a great tool for estimating, quick planning and most of all quick analysis. Over the years I have learnt a few tips and tricks that have sped up the way I use of Excel. Often, I come across others Read More