Skip to content

Commit a798aae

Browse files
authored
Merge pull request MicrosoftDocs#2171 from Vridhi-Chowdhry/patch-3
Update Set-SPOTenant.md
2 parents 579250a + d5131e2 commit a798aae

File tree

1 file changed

+31
-1
lines changed

1 file changed

+31
-1
lines changed

sharepoint/sharepoint-ps/sharepoint-online/Set-SPOTenant.md

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ Set-SPOTenant [-ApplyAppEnforcedRestrictionsToAdHocRecipients <Boolean>]
4040
[-SharingBlockedDomainList <String>] [-SharingDomainRestrictionMode <SharingDomainRestrictionModes>]
4141
[-ShowPeoplePickerSuggestionsForGuestUsers <Boolean>]
4242
[-SpecialCharactersStateInFileFolderNames <SpecialCharactersState>] [-UseFindPeopleInPeoplePicker <Boolean>]
43-
[-UserVoiceForFeedbackEnabled <Boolean>] [<CommonParameters>]
43+
[-UserVoiceForFeedbackEnabled <Boolean>]
44+
[-ContentTypeSyncSitesList MySites [-ExcludeSiteTemplate]]
45+
[<CommonParameters>]
4446
```
4547

4648
## DESCRIPTION
@@ -88,6 +90,21 @@ Set-SPOTenant -LegacyAuthProtocolsEnabled $True
8890

8991
This example enables legacy authentication protocols on the tenant. This can help to enable login in situations where the admin users get an error like "Cannot contact web site 'https://contoso-admin.sharepoint.com/' or the web site does not support SharePoint Online credentials. The response status code is 'Unauthorized'.", and the underlying error is "Access denied. Before opening files in this location, you must first browse to the web site and select the option to login automatically."
9092

93+
### -----------------------EXAMPLE 6------------------------------
94+
95+
```
96+
Set-SPOTenant -ContentTypeSyncSiteTemplatesList MySites
97+
```
98+
99+
This example enables Content Type Hub to push content types to all OneDrive for Business sites. There is no change in Content Type Publishing behaviour for other sites.
100+
101+
### -----------------------EXAMPLE 7-------------------------------
102+
103+
```
104+
Set-SPOTenant -ContentTypeSyncSiteTemplatesList MySites -ExcludeSiteTemplate
105+
```
106+
107+
This example stops publishing content types to OneDrive for Business sites.
91108

92109
## PARAMETERS
93110

@@ -1224,6 +1241,19 @@ Accept pipeline input: False
12241241
Accept wildcard characters: False
12251242
```
12261243
1244+
### -ContentTypeSyncSiteTemplatesList MySites [-ExcludeSiteTemplate]
1245+
By default Content Type Hub will no longer push content types to OneDrive for Business sites (formerly known as MySites).
1246+
In case you want the Content Type Hub to push content types to OneDrive for Business sites, use:
1247+
```
1248+
Set-SPOTenant -ContentTypeSyncSiteTemplatesList MySites
1249+
```
1250+
When the feature is enabled, the Content Type Hub will push content types to OneDrive for Business sites.
1251+
1252+
Once you have enabled Content Type publishing to OneDrive for Business sites, you can disable it later using:
1253+
```
1254+
Set-SPOTenant -ContentTypeSyncSiteTemplatesList MySites -ExcludeSiteTemplate
1255+
```
1256+
12271257
### CommonParameters
12281258
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
12291259

0 commit comments

Comments
 (0)