Monthly Archives January 2013

Free SharePoint 2013 E-Books

A good one for the bookmarks. Download content for ASP.NET, Office, SQL Server, Windows Azure, SharePoint Server and other Microsoft technologies in e-book formats. Reference, guide, and step-by-step information are all available. All the e-books are free. New books will be posted as they become available.

Definately worth a visit for no otherr eason than it’s free.

http://social.technet.microsoft.com/wiki/contents/articles/11608.e-book-gallery-for-microsoft-technologies.aspx

Read More

PowerShell, It’s everywhere

Love it or hate it, you cannot avoid it.  if you are expecting to do any work in SharePoint 2013 then you simply need to have skills in Powershell, or at least a working knowledge of its capabilities.

Let’s assume you need to get out some stats because your manager is knocking on your door asking for Usage Reports.  These can be found under Site Settings -> Site Administration ->Popularity Trends -> View Usage Reports.

They are though a little constrained but you can get deep and dirty with powershell.  The web contains many a fine example of how to get more granular  (Example below is taken from the Technet forums so credit to R Tut)

Get the Usage Reports for a site collection in PoweShell

$searchApp = Get-SPEnterpriseSearchServiceApplication

$site = Get-SPSite “{SiteUrl}”

$result = $...

Read More