Privacy & Security Perspectives
  • SharePoint 2013 Social Enterprise

    A short video on Collaboration, Communication & Engagement at C5 Alliance – apologies for the sound levels, let’s just say it wasn’t take one and I didn’t want to wake anybody up as it was getting late..! Enjoy!

  • Office 365 Public Facing Websites – Design Manager – Part 2

    This post is part 2 of my blog series “Building a Public-Facing Website on Office 365”: Creating a Public-Facing Website on Office 365 – Part 1 (Limitations) Office 365 Public-Facing Websites -  Master Pages & Page Layouts with Design Manager – Part 2 (This post) SharePoint has traditionally been a specialist area where it comes…

  • Cloning a Windows 8 Boot Partition (For Free!)

    The Problem You ran out of space on your Windows 8 PC, now you want to clone your boot drive (HDD, SSD, Whatever..) onto a bigger drive. Old faithful Clonezilla failed you for the first time, like it did for me…. the drive cloned but a corrupt MBR and no amount of bcdedit.exe or bcdboot.exe…

  • Creating a Public Facing Website on Office 365 – Part 1

    This post is part 1 of my blog series “Building a Public-Facing Website on Office 365”: Creating a Public-Facing Website on Office 365 – Part 1 (This post) Office 365 Public-Facing Websites –  Master Pages & Page Layouts with Design Manager – Part 2 SharePoint 2013 on-premises provides an excellent Web Content Management System (WCMS),…

  • Word experienced an error trying to open the file

    The Problem Opening a Word document from Office 365 using Word 2010 or 2013 results in the following: The Cause There cause is actually Word’s default security settings… probably a good thing! The Solution You can resolve this issue in at least two ways: 1. Disable Protected View (not recommended…) You can disable protected view…

  • SharePoint Evolution 2013 – #COM716 Slides

    Last week was another excellent conference – SharePoint Evolution is one of these environments where you will see a bunch of other speakers attending sessions and taking notes, learning from each other’s real world experience. In particular AC’s (Andrew Connell) session on Single Page Applications using a host of open source JavaScript libraries to build…

  • Speaking at the SharePoint Evolution Conference

    I’m humbled and honoured to be speaking at Combined Knowledge’s SharePoint conference again this year – the list of speakers really reads like a who’s who in the SharePoint world.   It’s a fantastic conference with great real world content from speakers who have been there and done it, but also a few additional things…

  • SharePoint Saturday UK Slides – SharePoint & SQL BI

    Thanks to everybody who came to my session on BI for the Masses… in the last 24 hours I built a fresh SharePoint 2010 farm and all the SQL BI stack demonstrated including Reporting Services, Tabular Analysis Services, PowerView, Power Pivot and various other steps. Not out of choice, but the hosted environment I had…

  • SharePoint Saturday UK 8th December

    I’m really excited to be speaking at SharePoint Saturday UK next weekend, this time about SharePoint & Business Intelligence – based around SQL 2012 improvements but something for everybody (even SharePoint Foundation users!). SharePoint Saturday in the UK is by far the biggest free to attend SharePoint event in the UK – it’s sold out…

  • PowerShell to disable Application Pool timeouts

    There are few things more annoying in life than debugging in Visual Studio and getting an App Pool timeout in IIS7+ and having to start again… See below my PowerShell script to disable this on all application pools. Disclaimer: Only to be run on a development environment. Really!!! $AppPools = Get-WmiObject -Class IISApplicationPoolSetting -Namespace ‘root/microsoftiisv2’…