Living a SharePoint life

Thursday, February 23, 2017

New updates for SharePoint, Project Server, and Office 2013 Click-to-Run

The following non-security updates for SharePoint Server 2013 and 2016, Project Server 2013, and Office 2013 Click-to-Run are available now:

SharePoint 2016

KB 3141515

KB 314517

 

SharePoint 2013

KB 3115296

KB 3118286

KB 3141485

KB 3141519

KB 3141523

 

Project Server 2013

KB 3141525

 

Office 2013 Click-to-Run

Version: 15.0.4903.1002

Content from: Office Updates http://bit.ly/2law2IQ

Tuesday, February 7, 2017

February 2017 Non-Security Office Update Release

Listed below are the non-security updates we released on the Download Center and Microsoft Update yesterday. See the linked KB articles for more information.

Office 2013

Update for Skype for Business 2015 (KB3161988)

Update for Microsoft Office 2013 (KB3115489)

Update for Microsoft Office 2013 (KB3141491)

Update for Microsoft Office 2013 (KB3127966)

Update for Microsoft OneNote 2013 (KB3141494)

Update for Microsoft Office 2013 (KB3127972)

Update for Microsoft Outlook 2013 (KB3141495)

Update for Microsoft PowerPoint 2013 (KB3141461)

Update for Microsoft Project 2013 (KB3141499)

Update for Microsoft Visio 2013 (KB3141492)

 Office 2016

Update for Microsoft Office 2016 (KB3141504)

Update for Skype for Business 2016 (KB3141501)

Update for Microsoft Office 2016 (KB3114389)

Update for Microsoft Office 2016 (KB3141508)

Update for Microsoft Office 2016 (KB3127991)

Update for Microsoft Office 2016 (KB3141510)

Update for Microsoft Office 2016 (KB3141513)

Update for Microsoft Office 2016 (KB3141505)

Update for Microsoft Office 2016 (KB3128048)

Update for Microsoft OneNote 2016 (KB3141512)

Update for Microsoft Office 2016 (KB3128052)

Update for Microsoft Outlook 2016 (KB3141511)

Update for Microsoft PowerPoint 2016 (KB3128051)

Update for Microsoft Project 2016 (KB3141514)

Update for Microsoft Office 2016 (KB3141509)

Update for Microsoft Visio 2016 (KB3141500)

 

 

Content from: Office Updates http://bit.ly/2jZj70d

Thursday, February 2, 2017

Correction to the list of superseded Word Viewer updates

We made some corrections to the superseded updates lists in three previously released Word Viewer updates on Microsoft Update today. These updates are KBs 3118394, 3128043, and 3128044. There were no other changes to the fixes provided by these updates.

Content from: Office Updates http://bit.ly/2kx1JPc

Wednesday, February 1, 2017

Code Snippet: Load the SharePoint Office PnP Module in PowerShell

How do you load the PowerShell OfficeP PnP module for SharePoint?

Addendum: I've added a try/catch block to the code. This way you can be sure the module is loaded.

# Loading Office Online PnP Module
try {
    if((Get-Module "Microsoft.Online.SharePoint.PowerShell" -ErrorAction SilentlyContinue) -eq $null) {
        Import-Module Microsoft.Online.SharePoint.PowerShell
        Write-Host "PowerShell module Microsoft.Online.SharePoint.PowerShell initialized"
    }
    else {
        Write-Host "PowerShell module Microsoft.Online.SharePoint.PowerShell loaded"
    }
}
catch {
    throw "PowerShell module Microsoft.Online.SharePoint.PowerShell initialization failed"
    exit 3
}

Featured Post

How are Microsoft Search quota consumed?

With Office 365 Search, Microsoft has created a central entry point for the modern workplace. In one convenient spot, users can access all ...