Microsoft cloud engineer - SharePoint, Office 365, Azure, DotNet, Angular, JavaScript.
Microsoft cloud engineer - SharePoint, Office 365, Azure, DotNet, Angular, JavaScript.

February 2020

What’s in that patch? February 2020

NOTE – PDF format updated to include both SharePoint 2013, 2016, and 2019 notes.

Ever wondered what fixes are inside of a given CU?   Please see attached PDF with full detail. I wanted a new format for easy reading.   Show management and make the business case for why downtime should be taken to apply CUs.  Also posted at https://sharepointupdates.com/

If you found this helpful, please leave a comment.   

shades_smile_thumb_thumb_thumb_thumb[2]

Download

What’s in that patch – Feb 2020.PDF

VIDEO – Load PNP the Right Way

Quick post about detecting if PowerShell PNP is available on the local PC and installing is missing (for new systems) to make PS1 script more portable across servers.(1) Detect command (2) Install module if missing (3) Import module. Cheers

shades_smile

Video

Code

# Load PNP module, the right way
Add-Type -Assembly "System.IO.Compression.FileSystem" -ErrorAction SilentlyContinue | Out-Null
$pnp = Get-Command Connect-PnPOnline -ErrorAction SilentlyContinue
if (!$pnp) {
    Install-Module "SharePointPnPPowerShellOnline" -Force
}
Import-Module "SharePointPnPPowerShellOnline" -ErrorAction SilentlyContinue | Out-Null

References

VIDEO DEMO – PowerApps Expense Report Demo

Wanted to share demo for the install and configuration of Expense Report sample application.  PowerApps and MS Flow leveraged to create validated input, mobile ready, rich forms input experience.   MS Flow applied for approval routing and audit trail.   Easily submit new request, automate approval, and enable full tracking with PowerApps and MS Flow working together.  Cheers. 

shades_smile

Video

Screenshots

image

image
image

image
image

image

image

image

Reference

FIXED – Win 10 Start Menu Empty

Wanted to share a quick update and fix for the recent Windows 10 start menu empty issue.   Asked around on Twitter and found helpful article (

https://www.windowslatest.com/2020/02/05/its-not-just-you-windows-10-search-is-giving-blank-results/) from @JM2K69 mentioning two Registry keys which need to be set to zero value.   After applying and rebooting the Start Menu appear normally again.   Cheers. 

shades_smile

Video

Reference

© Copyright 2016
@ SPJeff

Return to Top ▲Return to Top ▲