Need to warmup your SharePoint sites, try this small script #Get SharePoint PowerShell commands# asnp *sharepoint* #Query webapplications # $webapps = get-spwebapplication -IncludeCentralAdministration foreach ($app in $webapps) { $sites = get-spsite -webapplication $app.url -Limit ALL foreach ($site in $sites) { #write-host $site.Url; foreach ($web in $site.AllWebs) { #write-host $web.Url; $r = Invoke-WebRequest -URI $web.Url -UseDefaultCredentials …
Category: SharePoint 2016
SharePoint Server 2016 – My new Lab
Not sure why Microsoft does this, is it to push all of us to the cloud? But for each version of SharePoint the need for servers seems to explode, this is my shinny new SharePoint 2016 lab, I'm trying to follow the guides for MinRole. Maybe I overdoing it but it turns out, I'll need at …
SharePoint 2016 Architecture – Model
Not sure which Architecture to choose, check this #Responsibility #Comparison Chart. https://technet.microsoft.com/en-us/library/cc263199(v=office.16).aspx
SharePoint 2016 Training
Course 20339-1A: Planning and Administering SharePoint 2016 https://www.microsoft.com/en-sg/learning/course.aspx?cid=20339-1 Course 20339-2A: Advanced Technologies of SharePoint 2016 https://www.microsoft.com/en-sg/learning/course.aspx?cid=20339-2
SharePoint 2016 on Technet
https://technet.microsoft.com/en-us/library/cc303422(v=office.16).aspx Diagrams: https://technet.microsoft.com/en-us/library/cc263199(v=office.16).aspx Install and Configure: https://technet.microsoft.com/en-us/library/cc262957(v=office.16).aspx MinRole details: https://technet.microsoft.com/en-us/library/mt667910(v=office.16).aspx