@@ -46,7 +46,8 @@ For permissions and the most current information about Windows PowerShell for Sh
4646
4747### --------------------EXAMPLE 1---------------------
4848```
49- C:\PS>Set-SPMetadataServiceApplication -Identity "MetadataServiceApp1" -HubUri "http://sitename" -SyndicationErrorReportEnabled
49+ PS C:\>$sa = Get-SPMetadataServiceApplication -Identity 'Managed Metadata Service Application'
50+ PS C:\>Set-SPMetadataServiceApplication -Identity $sa -HubUri 'http://sitename' -SyndicationErrorReportEnabled
5051```
5152
5253This example adds a content type hub to an existing managed metadata service application.
@@ -55,7 +56,8 @@ It also enables error reporting when content types are imported.
5556
5657### --------------------EXAMPLE 2---------------------
5758```
58- C:\PS>Set-SPMetadataServiceApplication -Identity "MetadataServiceApp1" -AdministratorAccount "contoso\username1" -FullAccessAccount "contoso\AppPoolAccount1,contoso\AppPoolAccount2" -RestrictedAccount "contoso\AppPoolAccount3,contoso\AppPoolAccount4,contoso\AppPoolAccount5" -ReadAccessAccount "contoso\AppPoolAccount6"
59+ PS C:\>$sa = Get-SPMetadataServiceApplication -Identity 'Managed Metadata Service Application'
60+ PS C:\>Set-SPMetadataServiceApplication -Identity $sa -AdministratorAccount 'contoso\username1' -FullAccessAccount 'contoso\AppPoolAccount1,contoso\AppPoolAccount2' -RestrictedAccount 'contoso\AppPoolAccount3,contoso\AppPoolAccount4,contoso\AppPoolAccount5' -ReadAccessAccount 'contoso\AppPoolAccount6'
5961```
6062
6163This example sets permissions on an existing managed metadata service application.
@@ -421,13 +423,13 @@ Accept wildcard characters: False
421423` ` `
422424
423425# ## -DisablePartitionQuota
424- {{Fill DisablePartitionQuota Description}}
426+ When in partitioned mode, disables the partition quota.
425427
426428` ` ` yaml
427429Type: SwitchParameter
428430Parameter Sets: NoQuota
429431Aliases:
430- Applicable: SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016
432+ Applicable: SharePoint Server 2013, SharePoint Server 2016
431433
432434Required: True
433435Position: Named
@@ -437,13 +439,13 @@ Accept wildcard characters: False
437439` ` `
438440
439441# ## -GroupsPerPartition
440- {{Fill GroupsPerPartition Description}}
442+ When in partitioned mode, sets the maximum number of groups per partition.
441443
442444` ` ` yaml
443445Type: Int32
444446Parameter Sets: Quota
445447Aliases:
446- Applicable: SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016
448+ Applicable: SharePoint Server 2013, SharePoint Server 2016
447449
448450Required: True
449451Position: Named
@@ -453,13 +455,13 @@ Accept wildcard characters: False
453455` ` `
454456
455457# ## -LabelsPerPartition
456- {{Fill LabelsPerPartition Description}}
458+ When in partitioned mode, sets the maximum number of labels per partition.
457459
458460` ` ` yaml
459461Type: Int32
460462Parameter Sets: Quota
461463Aliases:
462- Applicable: SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016
464+ Applicable: SharePoint Server 2013, SharePoint Server 2016
463465
464466Required: True
465467Position: Named
@@ -469,13 +471,13 @@ Accept wildcard characters: False
469471` ` `
470472
471473# ## -PropertiesPerPartition
472- {{Fill PropertiesPerPartition Description}}
474+ When in partitioned mode, sets the maximum number of properties per partition.
473475
474476` ` ` yaml
475477Type: Int32
476478Parameter Sets: Quota
477479Aliases:
478- Applicable: SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016
480+ Applicable: SharePoint Server 2013, SharePoint Server 2016
479481
480482Required: True
481483Position: Named
@@ -485,13 +487,13 @@ Accept wildcard characters: False
485487` ` `
486488
487489# ## -TermSetsPerPartition
488- {{Fill TermSetsPerPartition Description}}
490+ When in partitioned mode, sets the maximum number of term sets per partition.
489491
490492` ` ` yaml
491493Type: Int32
492494Parameter Sets: Quota
493495Aliases:
494- Applicable: SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016
496+ Applicable: SharePoint Server 2013, SharePoint Server 2016
495497
496498Required: True
497499Position: Named
@@ -501,13 +503,13 @@ Accept wildcard characters: False
501503` ` `
502504
503505# ## -TermsPerPartition
504- {{Fill TermsPerPartition Description}}
506+ When in partitioned mode, sets the maximum number of terms per partition.
505507
506508` ` ` yaml
507509Type: Int32
508510Parameter Sets: Quota
509511Aliases:
510- Applicable: SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016
512+ Applicable: SharePoint Server 2013, SharePoint Server 2016
511513
512514Required: True
513515Position: Named
0 commit comments