Skip to content

Commit 7aa40ec

Browse files
committed
spelling mistakes
1 parent 9caed19 commit 7aa40ec

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

docs/transform/modernize-userinterface-lists-and-libraries-optout.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.prod: sharepoint
77

88
# Opting out of the modern list and library experience
99

10-
In 2016, we introduced a new “modern” experience for SharePoint, bringing extensibility, accessibility, and responsive design to a complete overhaul of the user experience. Since then, modern has been the basis for innovation throughout SharePoint and OneDrive, although classic mode remains supported and available. Although the majority of lists and libraries work perfect in the modern experience, there are also lists which don't work as expected or miss functionality when used in modern. Often this is due to customizations on the list (e.g. JSLink) or on the list form page (e.g. multiple web parts used). SharePoint will detect most incompatible customizations and will at present the impacted lists and libraries using the classic experience, while the other lists and libraries in the site will work using the modern experience. If switching between the modern and classic experiences is not acceptable then you do have the option to opt out lists and libraries from the modern experience. In this article you'll learn about the available opt out options, how to detect lists and libraries that could benefit from opting out of modern and finally how to best handle the opt out.
10+
In 2016, we introduced a new “modern” experience for SharePoint, bringing extensibility, accessibility, and responsive design to a complete overhaul of the user experience. Since then, modern has been the basis for innovation throughout SharePoint and OneDrive, although classic mode remains supported and available. The majority of lists and libraries work perfect in the modern experience, but there are also lists which don't work as expected or miss functionality when used in modern. Often this is due to customizations on the list (e.g. JSLink) or on the list form page (e.g. multiple web parts used). SharePoint will detect most incompatible customizations and will show the impacted lists and libraries using the classic experience, while the other lists and libraries in the site will be shown using the modern experience. If switching between the modern and classic experiences is not acceptable, then you do have the option to opt out lists and libraries from the modern experience. In this article you'll learn about the available opt out options, how to detect lists and libraries that could benefit from opting out of modern and finally how to best handle the opt out.
1111

1212
## Options to opt out lists and libraries from the modern experience
1313

@@ -20,7 +20,7 @@ You can opt out a site collection from using the "modern" experience by enabling
2020
$cred = Get-Credential
2121
Connect-PnPOnline -Url https://[tenant].sharepoint.com/sites/siteurl -Credentials $cred
2222
23-
# Prevent modern lists and libraries at site collection level
23+
# Opt out from modern lists and libraries at site collection level
2424
Enable-PnPFeature -Identity E3540C7D-6BEA-403C-A224-1A12EAFEE4C4 -Scope Site
2525
# And again enable modern lists and libraries at site collection level
2626
#Disable-PnPFeature -Identity E3540C7D-6BEA-403C-A224-1A12EAFEE4C4 -Scope Site
@@ -35,7 +35,7 @@ You can opt out a web from using the "modern" experience by enabling a feature w
3535
$cred = Get-Credential
3636
Connect-PnPOnline -Url https://[tenant].sharepoint.com/sites/siteurl -Credentials $cred
3737
38-
# Prevent modern lists and libraries at web level
38+
# Opt out from modern lists and libraries at web level
3939
Enable-PnPFeature -Identity 52E14B6F-B1BB-4969-B89B-C4FAA56745EF -Scope Web
4040
# And again enable modern lists and libraries at web level
4141
#Disable-PnPFeature -Identity 52E14B6F-B1BB-4969-B89B-C4FAA56745EF -Scope Web
@@ -72,11 +72,13 @@ Invoke-PnPQuery
7272

7373
Opting out of the modern experience is only needed in certain cases, as described in this article's introduction. Previous chapter showed you how to perform an opt out, but how do know which lists and libraries are candidates to be opted out from the modern experience?
7474

75-
The [SharePoint Modernization scanner](https://aka.ms/sppnp-modernizationscanner) will give you the needed answers: if you run the scanner in "Full scan" or in "Modern list experience readiness" mode the scanner will collect all the data about your lists. Using the generated **Modern UI List Readiness** Excel report you can find the lists having customizations as explain in the [Analyze and use the scanner data](modernize-userinterface-lists-and-libraries-scanner.md) article.
75+
The [SharePoint Modernization scanner](https://aka.ms/sppnp-modernizationscanner) will give you the needed answers: if you run the scanner in "Full scan" or in "Modern list experience readiness" mode the scanner will collect all the data about your lists. Using the generated **Modern UI List Readiness** Excel report you can find the lists having customizations as explained in the [Analyze and use the scanner data](modernize-userinterface-lists-and-libraries-scanner.md) article.
7676

77-
The found lists will already present themselves in classic, due to SharePoint's classic fallback mechanism. If you however want to offer a full classic user experience than you might want to opt out the complete site collection from modern lists and libraries. To help you with that the scanner generates a CSV file named **SitesWithCustomizations.csv**. This CSV file is simple list of site collection URL's without a header as shown in below sample:
77+
The found lists will already present themselves in classic, due to SharePoint's classic fallback mechanism. If you however want to offer a full classic user experience, than you might want to opt out the complete site collection from modern lists and libraries. To make that easy, the scanner generates a CSV file named **SitesWithCustomizations.csv** listing all site collections hat contain one or more lists that could be opted out.
7878

79-
```text
79+
This CSV file is a simple list of site collection URL's without a header as shown in below sample:
80+
81+
```CSV
8082
"https://contoso.sharepoint.com/sites/siteA"
8183
"https://contoso.sharepoint.com/sites/siteB"
8284
"https://contoso.sharepoint.com/sites/siteC"

0 commit comments

Comments
 (0)