#17 in Information management books
Use arrows to jump to the previous/next product

Reddit mentions of Deploying SharePoint 2016: Best Practices for Installing, Configuring, and Maintaining SharePoint Server 2016

Sentiment score: 2
Reddit mentions: 3

We found 3 Reddit mentions of Deploying SharePoint 2016: Best Practices for Installing, Configuring, and Maintaining SharePoint Server 2016. Here are the top ones.

Deploying SharePoint 2016: Best Practices for Installing, Configuring, and Maintaining SharePoint Server 2016
Buying options
View on Amazon.com
or
    Features:
  • Processor: Xeon E3-1225 v3 (4C/3.2GHz/ 8MB/1600MHz)
  • Disk Bays: 4x3.5- Inch HS
  • Hard Drive Rotational Speed: 7200 RPM, 4 GB DDR3 RAM
  • Mouse & keyboard Sold seperately
Specs:
Height10 Inches
Length7.01 Inches
Number of items1
Release dateNovember 2016
Weight17.45399728254 Pounds
Width0.96 Inches

idea-bulb Interested in what Redditors like? Check out our Shuffle feature

Shuffle: random products popular on Reddit

Found 3 comments on Deploying SharePoint 2016: Best Practices for Installing, Configuring, and Maintaining SharePoint Server 2016:

u/Megatwan · 4 pointsr/sharepoint

(I'll do it for him... )big fan of this book as the engineer's owners manual for 2016:
https://www.amazon.com/Deploying-SharePoint-2016-Configuring-Maintaining/dp/1484219988

looking for practical aspects of farm management that gets a bit trickier: i'd defer to some of the 2013 books on sp solutions and adoption/governance. ie what is optional somewhat depends on org expectations/needs. also product owner assessment on deprecated tech without clear or replaced by more resource intensive methods (ie infopath, workflow, pub sites, access apps).

let me know if you want more references or have specific questions you are looking for content on.

u/rare_design · 2 pointsr/sharepoint

I realize you are working with 2010, but you may be able to use the same approach as from SP2016, so I will reference below, but if not, here are some links to 2010 resources:

http://www.harbar.net/articles/sp2010ups.aspx

https://docs.microsoft.com/en-us/sharepoint/install/create-a-user-profile-service-application

https://social.technet.microsoft.com/wiki/contents/articles/5199.sharepoint-2010-creating-user-profile-service-application-with-solution-to-most-common-issue.aspx

This snippet is from page 341 of Vlad Catrinescu and Trevor Seward's, Deploying SharePoint 2016, which I recommend getting if you will continue working with SharePoint. It's a great resource I keep next to me.

$sa = New-SPProfileServiceApplication -Name "User Profile Service Application" -applicationpool "SharePoint Web Services Default" -ProfileDBName 'Profile_DB_2013' -SocialDBName 'Social_DB_2013' -ProfileSyncDBName 'Sync_DB'

We then need to create Service Application Proxy by using the following cmdlet.

New-SPProfileServiceApplicationProxy -Name "User Profile Service Application Proxy" -ServiceApplication $sa -DefaultProxyGroup

You can purchase their book here:

https://www.amazon.com/Deploying-SharePoint-2016-Configuring-Maintaining/dp/1484219988

Please note, as with anything like this, the names of service applications, application pools, and databases, are all subjective and will need to be determined by your existing environment.

​