HOTSPOT
You upgrade a SharePoint 2010 environment to SharePoint 2013. The new environment includes the
following site collections.
All site collections are backward compatible with SharePoint 2010.
You are preparing to allow site owners to upgrade sites to SharePoint 2013 compatibility mode.
You need to limit the number of sites that can be upgraded concurrently to five or fewer.
Which Windows PowerShell cmdlets should you run? (To answer, select the appropriate cmdlet from
each drop-down list in the answer area.)
Explanation:
* Set-SPContentDatabases
Sets global properties of a SharePoint content database.
* ConcurrentSiteUpgradeSessionLimit
The limit on how many site upgrade session can happen concurrently on this database.
The answer is wrong. Set is not right; it should be get. In my opinion, the answer should be something like
$var = Get-SPWebApplication https://intranet.contoso.com
$var.SiteUpgradeThrottleSettings.AppPoolConcurrentUpgradSessionLimit = 5
Or, $var = Get-SPContentDatabase -Site https://intranet.contoso.com
$var.ConcurrentSiteUpgradeSessionLimit=5
Or $var = Get-SPContentDatabase WSS_Content
$var.ConcurrentSiteUpgradeSessionLimit=5
My first suggestion is not correct. The web application is not supplied here. However, the last two don’t affect the complete web application.