@pnp/cli-microsoft365 6.8.0-beta.e41be56 → 6.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.js +2 -0
- package/.mocharc.json +1 -0
- package/README.md +6 -1
- package/dist/Command.js +6 -0
- package/dist/chili/chili.js +298 -0
- package/dist/chili/index.js +20 -0
- package/dist/cli/Cli.js +2 -2
- package/dist/m365/aad/commands/user/user-add.js +30 -21
- package/dist/m365/app/commands/permission/permission-add.js +279 -0
- package/dist/m365/app/commands.js +1 -0
- package/dist/m365/commands/commands.js +2 -0
- package/dist/m365/commands/docs.js +42 -0
- package/dist/m365/commands/login.js +1 -1
- package/dist/m365/commands/setup.js +180 -0
- package/dist/m365/commands/setupPresets.js +25 -0
- package/dist/m365/pa/commands/app/app-consent-set.js +101 -0
- package/dist/m365/pa/commands.js +1 -0
- package/dist/m365/planner/commands/roster/roster-plan-list.js +102 -0
- package/dist/m365/planner/commands.js +1 -0
- package/dist/m365/purview/commands/sensitivitylabel/sensitivitylabel-get.js +97 -0
- package/dist/m365/purview/commands/sensitivitylabel/sensitivitylabel-list.js +85 -0
- package/dist/m365/purview/commands/sensitivitylabel/sensitivitylabel-policysettings-list.js +89 -0
- package/dist/m365/purview/commands.js +3 -0
- package/dist/m365/spfx/commands/project/project-doctor/doctor-1.17.2.js +25 -0
- package/dist/m365/spfx/commands/project/project-doctor/rules/FN001035_DEP_fluentui_react.js +18 -0
- package/dist/m365/spfx/commands/project/project-doctor/rules/FN021009_PKG_no_duplicate_oui_deps.js +11 -4
- package/dist/m365/spfx/commands/project/project-doctor.js +2 -1
- package/dist/m365/spfx/commands/project/project-upgrade/rules/FN001035_DEP_fluentui_react.js +18 -0
- package/dist/m365/spfx/commands/project/project-upgrade/upgrade-1.15.2.js +2 -0
- package/dist/m365/spfx/commands/project/project-upgrade/upgrade-1.17.2.js +61 -0
- package/dist/m365/spfx/commands/project/project-upgrade.js +2 -1
- package/dist/m365/spfx/commands/spfx-doctor.js +29 -30
- package/dist/m365/spo/commands/applicationcustomizer/applicationcustomizer-remove.js +146 -0
- package/dist/m365/spo/commands/file/file-checkin.js +8 -3
- package/dist/m365/spo/commands/file/file-checkout.js +8 -3
- package/dist/m365/spo/commands/file/file-copy.js +4 -4
- package/dist/m365/spo/commands/file/file-get.js +3 -1
- package/dist/m365/spo/commands/file/file-list.js +17 -6
- package/dist/m365/spo/commands/file/file-move.js +6 -7
- package/dist/m365/spo/commands/file/file-remove.js +6 -12
- package/dist/m365/spo/commands/file/file-rename.js +3 -3
- package/dist/m365/spo/commands/file/file-roleassignment-add.js +2 -1
- package/dist/m365/spo/commands/file/file-roleassignment-remove.js +3 -3
- package/dist/m365/spo/commands/file/file-roleinheritance-break.js +2 -1
- package/dist/m365/spo/commands/file/file-roleinheritance-reset.js +2 -1
- package/dist/m365/spo/commands/file/file-sharinginfo-get.js +4 -2
- package/dist/m365/spo/commands/file/file-version-clear.js +3 -1
- package/dist/m365/spo/commands/file/file-version-get.js +3 -1
- package/dist/m365/spo/commands/file/file-version-remove.js +3 -1
- package/dist/m365/spo/commands/file/file-version-restore.js +3 -1
- package/dist/m365/spo/commands/folder/folder-copy.js +4 -4
- package/dist/m365/spo/commands/folder/folder-get.js +5 -2
- package/dist/m365/spo/commands/folder/folder-move.js +3 -2
- package/dist/m365/spo/commands/folder/folder-rename.js +5 -2
- package/dist/m365/spo/commands/list/list-get.js +30 -3
- package/dist/m365/spo/commands/list/list-list.js +39 -2
- package/dist/m365/spo/commands/listitem/listitem-batch-set.js +308 -0
- package/dist/m365/spo/commands/page/page-section-add.js +2 -3
- package/dist/m365/spo/commands/serviceprincipal/serviceprincipal-permissionrequest-list.js +46 -1
- package/dist/m365/spo/commands/site/site-recyclebinitem-move.js +119 -0
- package/dist/m365/spo/commands/site/site-recyclebinitem-remove.js +106 -0
- package/dist/m365/spo/commands/tenant/tenant-applicationcustomizer-get.js +30 -39
- package/dist/m365/spo/commands/tenant/tenant-applicationcustomizer-list.js +47 -0
- package/dist/m365/spo/commands/tenant/tenant-applicationcustomizer-remove.js +151 -0
- package/dist/m365/spo/commands/tenant/tenant-commandset-remove.js +152 -0
- package/dist/m365/spo/commands/tenant/tenant-commandset-set.js +203 -0
- package/dist/m365/spo/commands/tenant/tenant-settings-set.js +4 -0
- package/dist/m365/spo/commands/term/term-add.js +13 -4
- package/dist/m365/spo/commands/term/term-get.js +14 -5
- package/dist/m365/spo/commands/term/term-group-get.js +12 -3
- package/dist/m365/spo/commands/term/term-group-list.js +39 -4
- package/dist/m365/spo/commands/term/term-list.js +18 -9
- package/dist/m365/spo/commands/term/term-set-add.js +13 -4
- package/dist/m365/spo/commands/term/term-set-get.js +12 -3
- package/dist/m365/spo/commands/term/term-set-list.js +12 -3
- package/dist/m365/spo/commands.js +9 -0
- package/dist/m365/teams/commands/chat/chat-member-remove.js +137 -0
- package/dist/m365/teams/commands/meeting/meeting-transcript-list.js +124 -0
- package/dist/m365/teams/commands.js +2 -0
- package/dist/utils/formatting.js +35 -11
- package/dist/utils/pid.js +5 -0
- package/dist/utils/spo.js +1 -1
- package/docs/docs/cmd/aad/o365group/o365group-get.md +0 -12
- package/docs/docs/cmd/aad/user/user-add.md +4 -0
- package/docs/docs/cmd/aad/user/user-set.md +2 -2
- package/docs/docs/cmd/adaptivecard/adaptivecard-send.md +13 -13
- package/docs/docs/cmd/app/app-get.md +25 -6
- package/docs/docs/cmd/app/app-open.md +8 -2
- package/docs/docs/cmd/app/permission/permission-add.md +53 -0
- package/docs/docs/cmd/app/permission/permission-list.md +19 -19
- package/docs/docs/cmd/booking/business/business-get.md +30 -8
- package/docs/docs/cmd/booking/business/business-list.md +17 -8
- package/docs/docs/cmd/cli/cli-consent.md +6 -0
- package/docs/docs/cmd/cli/cli-doctor.md +17 -0
- package/docs/docs/cmd/cli/cli-issue.md +6 -0
- package/docs/docs/cmd/cli/cli-reconsent.md +6 -0
- package/docs/docs/cmd/cli/completion/completion-sh-setup.md +6 -0
- package/docs/docs/cmd/cli/config/config-get.md +6 -0
- package/docs/docs/cmd/docs.md +51 -0
- package/docs/docs/cmd/flow/environment/environment-list.md +18 -0
- package/docs/docs/cmd/flow/flow-get.md +20 -0
- package/docs/docs/cmd/flow/flow-list.md +17 -0
- package/docs/docs/cmd/graph/changelog/changelog-list.md +52 -0
- package/docs/docs/cmd/graph/schemaextension/schemaextension-add.md +61 -0
- package/docs/docs/cmd/graph/schemaextension/schemaextension-get.md +61 -0
- package/docs/docs/cmd/graph/schemaextension/schemaextension-list.md +61 -0
- package/docs/docs/cmd/graph/schemaextension/schemaextension-remove.md +4 -0
- package/docs/docs/cmd/graph/schemaextension/schemaextension-set.md +4 -0
- package/docs/docs/cmd/graph/subscription/subscription-add.md +73 -0
- package/docs/docs/cmd/login.md +1 -1
- package/docs/docs/cmd/onedrive/onedrive-list.md +225 -0
- package/docs/docs/cmd/onedrive/report/report-activityfilecounts.md +39 -0
- package/docs/docs/cmd/onedrive/report/report-activityusercounts.md +39 -0
- package/docs/docs/cmd/onedrive/report/report-activityuserdetail.md +43 -0
- package/docs/docs/cmd/onedrive/report/report-usageaccountcounts.md +38 -0
- package/docs/docs/cmd/onedrive/report/report-usageaccountdetail.md +43 -0
- package/docs/docs/cmd/onedrive/report/report-usagefilecounts.md +38 -0
- package/docs/docs/cmd/onedrive/report/report-usagestorage.md +37 -0
- package/docs/docs/cmd/onenote/notebook/notebook-list.md +79 -0
- package/docs/docs/cmd/pa/app/app-consent-set.md +47 -0
- package/docs/docs/cmd/planner/plan/plan-get.md +1 -1
- package/docs/docs/cmd/planner/plan/plan-list.md +1 -1
- package/docs/docs/cmd/planner/roster/roster-add.md +2 -1
- package/docs/docs/cmd/planner/roster/roster-get.md +1 -1
- package/docs/docs/cmd/planner/roster/roster-plan-list.md +109 -0
- package/docs/docs/cmd/planner/roster/roster-remove.md +2 -1
- package/docs/docs/cmd/planner/task/task-get.md +0 -6
- package/docs/docs/cmd/planner/task/task-set.md +1 -1
- package/docs/docs/cmd/purview/retentionevent/retentionevent-add.md +6 -7
- package/docs/docs/cmd/purview/retentionevent/retentionevent-get.md +6 -7
- package/docs/docs/cmd/purview/retentionevent/retentionevent-list.md +4 -4
- package/docs/docs/cmd/purview/retentionevent/retentionevent-remove.md +4 -4
- package/docs/docs/cmd/purview/retentioneventtype/retentioneventtype-add.md +10 -10
- package/docs/docs/cmd/purview/retentioneventtype/retentioneventtype-get.md +11 -11
- package/docs/docs/cmd/purview/retentioneventtype/retentioneventtype-list.md +10 -10
- package/docs/docs/cmd/purview/retentioneventtype/retentioneventtype-remove.md +10 -10
- package/docs/docs/cmd/purview/retentioneventtype/retentioneventtype-set.md +10 -10
- package/docs/docs/cmd/purview/retentionlabel/retentionlabel-add.md +12 -12
- package/docs/docs/cmd/purview/retentionlabel/retentionlabel-get.md +8 -9
- package/docs/docs/cmd/purview/retentionlabel/retentionlabel-list.md +8 -9
- package/docs/docs/cmd/purview/retentionlabel/retentionlabel-remove.md +8 -8
- package/docs/docs/cmd/purview/retentionlabel/retentionlabel-set.md +8 -8
- package/docs/docs/cmd/purview/sensitivitylabel/sensitivitylabel-get.md +118 -0
- package/docs/docs/cmd/purview/sensitivitylabel/sensitivitylabel-list.md +111 -0
- package/docs/docs/cmd/purview/sensitivitylabel/sensitivitylabel-policysettings-list.md +97 -0
- package/docs/docs/cmd/search/externalconnection/externalconnection-get.md +17 -0
- package/docs/docs/cmd/search/externalconnection/externalconnection-list.md +17 -0
- package/docs/docs/cmd/setup.md +86 -0
- package/docs/docs/cmd/spfx/project/project-doctor.md +1 -1
- package/docs/docs/cmd/spfx/project/project-upgrade.md +1 -1
- package/docs/docs/cmd/spo/applicationcustomizer/applicationcustomizer-add.md +1 -1
- package/docs/docs/cmd/spo/applicationcustomizer/applicationcustomizer-remove.md +77 -0
- package/docs/docs/cmd/spo/commandset/commandset-set.md +1 -1
- package/docs/docs/cmd/spo/contenttype/contenttype-set.md +2 -2
- package/docs/docs/cmd/spo/customaction/customaction-add.md +1 -1
- package/docs/docs/cmd/spo/customaction/customaction-set.md +1 -1
- package/docs/docs/cmd/spo/feature/feature-enable.md +2 -2
- package/docs/docs/cmd/spo/file/file-add.md +1 -1
- package/docs/docs/cmd/spo/file/file-checkin.md +1 -1
- package/docs/docs/cmd/spo/file/file-checkout.md +1 -1
- package/docs/docs/cmd/spo/file/file-copy.md +1 -1
- package/docs/docs/cmd/spo/file/file-get.md +1 -1
- package/docs/docs/cmd/spo/file/file-list.md +9 -6
- package/docs/docs/cmd/spo/file/file-move.md +3 -3
- package/docs/docs/cmd/spo/file/file-remove.md +12 -0
- package/docs/docs/cmd/spo/file/file-rename.md +1 -1
- package/docs/docs/cmd/spo/file/file-retentionlabel-ensure.md +3 -3
- package/docs/docs/cmd/spo/file/file-retentionlabel-remove.md +2 -2
- package/docs/docs/cmd/spo/file/file-roleassignment-add.md +1 -1
- package/docs/docs/cmd/spo/file/file-roleassignment-remove.md +1 -1
- package/docs/docs/cmd/spo/file/file-roleinheritance-break.md +1 -1
- package/docs/docs/cmd/spo/file/file-roleinheritance-reset.md +1 -1
- package/docs/docs/cmd/spo/file/file-sharinginfo-get.md +1 -1
- package/docs/docs/cmd/spo/file/file-sharinglink-add.md +1 -1
- package/docs/docs/cmd/spo/file/file-sharinglink-clear.md +1 -1
- package/docs/docs/cmd/spo/file/file-sharinglink-get.md +1 -1
- package/docs/docs/cmd/spo/file/file-sharinglink-list.md +1 -1
- package/docs/docs/cmd/spo/file/file-sharinglink-remove.md +1 -1
- package/docs/docs/cmd/spo/file/file-sharinglink-set.md +1 -1
- package/docs/docs/cmd/spo/file/file-version-clear.md +2 -2
- package/docs/docs/cmd/spo/file/file-version-get.md +1 -1
- package/docs/docs/cmd/spo/file/file-version-list.md +1 -1
- package/docs/docs/cmd/spo/file/file-version-remove.md +1 -1
- package/docs/docs/cmd/spo/file/file-version-restore.md +1 -1
- package/docs/docs/cmd/spo/folder/folder-add.md +9 -3
- package/docs/docs/cmd/spo/folder/folder-copy.md +2 -2
- package/docs/docs/cmd/spo/folder/folder-get.md +7 -7
- package/docs/docs/cmd/spo/folder/folder-list.md +11 -11
- package/docs/docs/cmd/spo/folder/folder-move.md +1 -1
- package/docs/docs/cmd/spo/folder/folder-remove.md +7 -7
- package/docs/docs/cmd/spo/folder/folder-rename.md +11 -5
- package/docs/docs/cmd/spo/folder/folder-retentionlabel-ensure.md +3 -3
- package/docs/docs/cmd/spo/folder/folder-retentionlabel-remove.md +1 -1
- package/docs/docs/cmd/spo/folder/folder-roleinheritance-break.md +1 -1
- package/docs/docs/cmd/spo/folder/folder-roleinheritance-reset.md +4 -4
- package/docs/docs/cmd/spo/list/list-get.md +10 -0
- package/docs/docs/cmd/spo/list/list-list.md +28 -0
- package/docs/docs/cmd/spo/listitem/listitem-batch-set.md +67 -0
- package/docs/docs/cmd/spo/listitem/listitem-list.md +1 -1
- package/docs/docs/cmd/spo/orgassetslibrary/orgassetslibrary-list.md +19 -0
- package/docs/docs/cmd/spo/orgassetslibrary/orgassetslibrary-remove.md +12 -0
- package/docs/docs/cmd/spo/orgnewssite/orgnewssite-list.md +6 -0
- package/docs/docs/cmd/spo/page/page-column-get.md +15 -0
- package/docs/docs/cmd/spo/page/page-column-list.md +16 -0
- package/docs/docs/cmd/spo/page/page-control-get.md +18 -0
- package/docs/docs/cmd/spo/page/page-control-list.md +18 -0
- package/docs/docs/cmd/spo/page/page-copy.md +35 -0
- package/docs/docs/cmd/spo/page/page-get.md +39 -0
- package/docs/docs/cmd/spo/page/page-list.md +53 -0
- package/docs/docs/cmd/spo/page/page-section-get.md +12 -0
- package/docs/docs/cmd/spo/page/page-section-list.md +13 -0
- package/docs/docs/cmd/spo/page/page-template-list.md +31 -0
- package/docs/docs/cmd/spo/propertybag/propertybag-get.md +6 -0
- package/docs/docs/cmd/spo/propertybag/propertybag-list.md +13 -0
- package/docs/docs/cmd/spo/report/report-activityfilecounts.md +7 -0
- package/docs/docs/cmd/spo/report/report-activitypages.md +7 -0
- package/docs/docs/cmd/spo/report/report-activityusercounts.md +7 -0
- package/docs/docs/cmd/spo/report/report-activityuserdetail.md +7 -0
- package/docs/docs/cmd/spo/report/report-siteusagedetail.md +7 -0
- package/docs/docs/cmd/spo/report/report-siteusagefilecounts.md +7 -0
- package/docs/docs/cmd/spo/report/report-siteusagepages.md +7 -0
- package/docs/docs/cmd/spo/report/report-siteusagesitecounts.md +7 -0
- package/docs/docs/cmd/spo/report/report-siteusagestorage.md +7 -0
- package/docs/docs/cmd/spo/roledefinition/roledefinition-get.md +20 -0
- package/docs/docs/cmd/spo/roledefinition/roledefinition-list.md +20 -0
- package/docs/docs/cmd/spo/serviceprincipal/serviceprincipal-grant-add.md +20 -0
- package/docs/docs/cmd/spo/serviceprincipal/serviceprincipal-grant-list.md +18 -0
- package/docs/docs/cmd/spo/serviceprincipal/serviceprincipal-permissionrequest-approve.md +20 -0
- package/docs/docs/cmd/spo/serviceprincipal/serviceprincipal-permissionrequest-list.md +17 -0
- package/docs/docs/cmd/spo/serviceprincipal/serviceprincipal-set.md +13 -0
- package/docs/docs/cmd/spo/site/site-recyclebinitem-move.md +43 -0
- package/docs/docs/cmd/spo/site/site-recyclebinitem-remove.md +45 -0
- package/docs/docs/cmd/spo/tenant/tenant-applicationcustomizer-add.md +1 -1
- package/docs/docs/cmd/spo/tenant/tenant-applicationcustomizer-list.md +103 -0
- package/docs/docs/cmd/spo/tenant/tenant-applicationcustomizer-remove.md +49 -0
- package/docs/docs/cmd/spo/tenant/tenant-commandset-remove.md +49 -0
- package/docs/docs/cmd/spo/tenant/tenant-commandset-set.md +57 -0
- package/docs/docs/cmd/spo/tenant/tenant-settings-set.md +57 -54
- package/docs/docs/cmd/spo/term/term-add.md +107 -6
- package/docs/docs/cmd/spo/term/term-get.md +111 -10
- package/docs/docs/cmd/spo/term/term-group-get.md +71 -5
- package/docs/docs/cmd/spo/term/term-group-list.md +70 -2
- package/docs/docs/cmd/spo/term/term-list.md +80 -8
- package/docs/docs/cmd/spo/term/term-set-add.md +95 -11
- package/docs/docs/cmd/spo/term/term-set-get.md +92 -8
- package/docs/docs/cmd/spo/term/term-set-list.md +85 -5
- package/docs/docs/cmd/teams/app/app-list.md +17 -0
- package/docs/docs/cmd/teams/app/app-publish.md +18 -1
- package/docs/docs/cmd/teams/channel/channel-add.md +20 -0
- package/docs/docs/cmd/teams/channel/channel-get.md +21 -0
- package/docs/docs/cmd/teams/channel/channel-list.md +21 -0
- package/docs/docs/cmd/teams/channel/channel-member-list.md +20 -0
- package/docs/docs/cmd/teams/channel/channel-member-set.md +21 -0
- package/docs/docs/cmd/teams/chat/chat-get.md +22 -0
- package/docs/docs/cmd/teams/chat/chat-list.md +22 -0
- package/docs/docs/cmd/teams/chat/chat-member-list.md +20 -0
- package/docs/docs/cmd/teams/chat/chat-member-remove.md +52 -0
- package/docs/docs/cmd/teams/chat/chat-message-list.md +23 -0
- package/docs/docs/cmd/teams/funsettings/funsettings-list.md +15 -0
- package/docs/docs/cmd/teams/guestsettings/guestsettings-list.md +13 -0
- package/docs/docs/cmd/teams/meeting/meeting-transcript-list.md +96 -0
- package/docs/docs/cmd/teams/membersettings/membersettings-list.md +17 -0
- package/docs/docs/cmd/teams/tab/tab-remove.md +1 -1
- package/docs/docs/cmd/todo/list/list-add.md +18 -0
- package/docs/docs/cmd/todo/list/list-get.md +18 -0
- package/docs/docs/cmd/todo/list/list-list.md +18 -0
- package/docs/docs/cmd/todo/task/task-get.md +21 -0
- package/docs/docs/cmd/todo/task/task-list.md +21 -0
- package/docs/docs/cmd/util/accesstoken/accesstoken-get.md +6 -0
- package/docs/docs/cmd/version.md +1 -1
- package/docs/docs/cmd/viva/connections/connections-app-create.md +3 -3
- package/docs/docs/cmd/yammer/group/group-list.md +42 -0
- package/docs/docs/cmd/yammer/message/message-add.md +32 -0
- package/docs/docs/cmd/yammer/message/message-get.md +32 -0
- package/docs/docs/cmd/yammer/message/message-list.md +34 -0
- package/docs/docs/cmd/yammer/network/network-list.md +70 -0
- package/docs/docs/cmd/yammer/report/report-activitycounts.md +7 -0
- package/docs/docs/cmd/yammer/report/report-activityusercounts.md +7 -0
- package/docs/docs/cmd/yammer/report/report-activityuserdetail.md +7 -0
- package/docs/docs/cmd/yammer/report/report-deviceusagedistributionusercounts.md +7 -0
- package/docs/docs/cmd/yammer/report/report-deviceusageusercounts.md +7 -0
- package/docs/docs/cmd/yammer/report/report-deviceusageuserdetail.md +7 -0
- package/docs/docs/cmd/yammer/report/report-groupsactivitycounts.md +7 -0
- package/docs/docs/cmd/yammer/report/report-groupsactivitydetail.md +7 -0
- package/docs/docs/cmd/yammer/report/report-groupsactivitygroupcounts.md +7 -0
- package/docs/docs/cmd/yammer/user/user-get.md +55 -0
- package/docs/docs/cmd/yammer/user/user-list.md +55 -0
- package/docs/docs/cmd/yammer/yammer-search.md +15 -3
- package/npm-shrinkwrap.json +267 -334
- package/package.json +15 -13
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
# spo tenant applicationcustomizer list
|
|
2
|
+
|
|
3
|
+
Retrieves a list of application customizers that are installed tenant-wide.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
spo tenant applicationcustomizer list [options]
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Options
|
|
12
|
+
|
|
13
|
+
--8<-- "docs/cmd/_global.md"
|
|
14
|
+
|
|
15
|
+
## Examples
|
|
16
|
+
|
|
17
|
+
Retrieves a list of application customizers.
|
|
18
|
+
|
|
19
|
+
```sh
|
|
20
|
+
m365 spo tenant applicationcustomizer list
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Response
|
|
24
|
+
|
|
25
|
+
=== "JSON"
|
|
26
|
+
|
|
27
|
+
```json
|
|
28
|
+
[
|
|
29
|
+
{
|
|
30
|
+
"FileSystemObjectType": 0,
|
|
31
|
+
"Id": 8,
|
|
32
|
+
"ServerRedirectedEmbedUri": null,
|
|
33
|
+
"ServerRedirectedEmbedUrl": "",
|
|
34
|
+
"ID": 8,
|
|
35
|
+
"ContentTypeId": "0x00693E2C487575B448BD420C12CEAE7EFE",
|
|
36
|
+
"Title": "HelloWorld",
|
|
37
|
+
"Modified": "2023-05-21T14:31:30Z",
|
|
38
|
+
"Created": "2023-05-21T14:31:30Z",
|
|
39
|
+
"AuthorId": 9,
|
|
40
|
+
"EditorId": 9,
|
|
41
|
+
"OData__UIVersionString": "1.0",
|
|
42
|
+
"Attachments": false,
|
|
43
|
+
"GUID": "23951a41-f613-440e-8119-8f1e87df1d1a",
|
|
44
|
+
"OData__ColorTag": null,
|
|
45
|
+
"ComplianceAssetId": null,
|
|
46
|
+
"TenantWideExtensionComponentId": "d54e75e7-af4d-455f-9101-a5d906692ecd",
|
|
47
|
+
"TenantWideExtensionComponentProperties": "{\"testMessage\":\"Test message\"}",
|
|
48
|
+
"TenantWideExtensionWebTemplate": null,
|
|
49
|
+
"TenantWideExtensionListTemplate": 0,
|
|
50
|
+
"TenantWideExtensionLocation": "ClientSideExtension.ApplicationCustomizer",
|
|
51
|
+
"TenantWideExtensionSequence": 0,
|
|
52
|
+
"TenantWideExtensionHostProperties": null,
|
|
53
|
+
"TenantWideExtensionDisabled": false
|
|
54
|
+
}
|
|
55
|
+
]
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
=== "Text"
|
|
59
|
+
|
|
60
|
+
```text
|
|
61
|
+
TenantWideExtensionComponentId: d54e75e7-af4d-455f-9101-a5d906692ecd
|
|
62
|
+
TenantWideExtensionWebTemplate: null
|
|
63
|
+
Title : HelloWorld
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
=== "CSV"
|
|
67
|
+
|
|
68
|
+
```csv
|
|
69
|
+
FileSystemObjectType,Id,ServerRedirectedEmbedUrl,ID,ContentTypeId,Title,Modified,Created,AuthorId,EditorId,OData__UIVersionString,Attachments,GUID,TenantWideExtensionComponentId,TenantWideExtensionComponentProperties,TenantWideExtensionListTemplate,TenantWideExtensionLocation,TenantWideExtensionSequence,TenantWideExtensionDisabled
|
|
70
|
+
0,8,,8,0x00693E2C487575B448BD420C12CEAE7EFE,HelloWorld,2023-05-21T14:31:30Z,2023-05-21T14:31:30Z,9,9,1.0,,23951a41-f613-440e-8119-8f1e87df1d1a,d54e75e7-af4d-455f-9101-a5d906692ecd,"{""testMessage"":""Test message""}",0,ClientSideExtension.ApplicationCustomizer,0,
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
=== "Markdown"
|
|
74
|
+
|
|
75
|
+
```md
|
|
76
|
+
# spo tenant applicationcustomizer list
|
|
77
|
+
|
|
78
|
+
Date: 5/21/2023
|
|
79
|
+
|
|
80
|
+
## HelloWorld (8)
|
|
81
|
+
|
|
82
|
+
Property | Value
|
|
83
|
+
---------|-------
|
|
84
|
+
FileSystemObjectType | 0
|
|
85
|
+
Id | 8
|
|
86
|
+
ServerRedirectedEmbedUrl |
|
|
87
|
+
ID | 8
|
|
88
|
+
ContentTypeId | 0x00693E2C487575B448BD420C12CEAE7EFE
|
|
89
|
+
Title | HelloWorld
|
|
90
|
+
Modified | 2023-05-21T14:31:30Z
|
|
91
|
+
Created | 2023-05-21T14:31:30Z
|
|
92
|
+
AuthorId | 9
|
|
93
|
+
EditorId | 9
|
|
94
|
+
OData\_\_UIVersionString | 1.0
|
|
95
|
+
Attachments | false
|
|
96
|
+
GUID | 23951a41-f613-440e-8119-8f1e87df1d1a
|
|
97
|
+
TenantWideExtensionComponentId | d54e75e7-af4d-455f-9101-a5d906692ecd
|
|
98
|
+
TenantWideExtensionComponentProperties | {"testMessage":"Test message"}
|
|
99
|
+
TenantWideExtensionListTemplate | 0
|
|
100
|
+
TenantWideExtensionLocation | ClientSideExtension.ApplicationCustomizer
|
|
101
|
+
TenantWideExtensionSequence | 0
|
|
102
|
+
TenantWideExtensionDisabled | false
|
|
103
|
+
```
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# spo tenant applicationcustomizer remove
|
|
2
|
+
|
|
3
|
+
Removes an application customizer that is installed tenant wide.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
spo tenant applicationcustomizer remove [options]
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Options
|
|
12
|
+
|
|
13
|
+
`-t, --title [title]`
|
|
14
|
+
: The title of the Application Customizer. Specify either `title`, `id`, or `clientSideComponentId`.
|
|
15
|
+
|
|
16
|
+
`-i, --id [id]`
|
|
17
|
+
: The id of the Application Customizer. Specify either `title`, `id`, or `clientSideComponentId`.
|
|
18
|
+
|
|
19
|
+
`-c, --clientSideComponentId [clientSideComponentId]`
|
|
20
|
+
: The Client Side Component Id (GUID) of the application customizer. Specify either `title`, `id`, or `clientSideComponentId`.
|
|
21
|
+
|
|
22
|
+
`--confirm`
|
|
23
|
+
: Don't prompt for confirmation.
|
|
24
|
+
|
|
25
|
+
--8<-- "docs/cmd/_global.md"
|
|
26
|
+
|
|
27
|
+
## Examples
|
|
28
|
+
|
|
29
|
+
Removes an application customizer by title.
|
|
30
|
+
|
|
31
|
+
```sh
|
|
32
|
+
m365 spo tenant applicationcustomizer remove --title "Some customizer"
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
Removes an application customizer by id.
|
|
36
|
+
|
|
37
|
+
```sh
|
|
38
|
+
m365 spo tenant applicationcustomizer remove --id 3
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
Removes an application customizer by clientSideComponentId.
|
|
42
|
+
|
|
43
|
+
```sh
|
|
44
|
+
m365 spo tenant applicationcustomizer remove --clientSideComponentId "7096cded-b83d-4eab-96f0-df477ed7c0bc"
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
## Response
|
|
48
|
+
|
|
49
|
+
The command won't return a response on success.
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# spo tenant commandset remove
|
|
2
|
+
|
|
3
|
+
Removes a ListView Command Set that is installed tenant wide.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
spo tenant commandset remove [options]
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Options
|
|
12
|
+
|
|
13
|
+
`-t, --title [title]`
|
|
14
|
+
: The title of the ListView Command Set. Specify either `title`, `id`, or `clientSideComponentId`.
|
|
15
|
+
|
|
16
|
+
`-i, --id [id]`
|
|
17
|
+
: The id of the ListView Command Set. Specify either `title`, `id`, or `clientSideComponentId`.
|
|
18
|
+
|
|
19
|
+
`-c, --clientSideComponentId [clientSideComponentId]`
|
|
20
|
+
: The Client Side Component Id (GUID) of the ListView Command Set. Specify either `title`, `id`, or `clientSideComponentId`.
|
|
21
|
+
|
|
22
|
+
`--confirm`
|
|
23
|
+
: Don't prompt for confirmation.
|
|
24
|
+
|
|
25
|
+
--8 < -- "docs/cmd/_global.md"
|
|
26
|
+
|
|
27
|
+
## Examples
|
|
28
|
+
|
|
29
|
+
Removes an ListView Command Set by title.
|
|
30
|
+
|
|
31
|
+
```sh
|
|
32
|
+
m365 spo tenant commandset remove --title "Some command set"
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
Removes a ListView Command Set by id.
|
|
36
|
+
|
|
37
|
+
```sh
|
|
38
|
+
m365 spo tenant commandset remove --id 3
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
Removes a ListView Command Set by clientSideComponentId.
|
|
42
|
+
|
|
43
|
+
```sh
|
|
44
|
+
m365 spo tenant commandset remove --clientSideComponentId 7096cded-b83d-4eab-96f0-df477ed7c0bc
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
## Response
|
|
48
|
+
|
|
49
|
+
The command won't return a response on success.
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
# spo tenant commandset set
|
|
2
|
+
|
|
3
|
+
Updates a ListView Command Set that is installed tenant wide.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
spo tenant commandset set [options]
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Options
|
|
12
|
+
|
|
13
|
+
`-i, --id <id>`
|
|
14
|
+
: The id of the ListView Command Set
|
|
15
|
+
|
|
16
|
+
`-t, --newTitle [newTitle]`
|
|
17
|
+
: The updated title of the ListView Command Set
|
|
18
|
+
|
|
19
|
+
`-l, --listType [listType]`
|
|
20
|
+
: The list or library type to register the ListView Command Set on. Allowed values `List` or `Library`.
|
|
21
|
+
|
|
22
|
+
`-i, --clientSideComponentId [clientSideComponentId]`
|
|
23
|
+
: The Client Side Component Id (GUID) of the ListView Command Set.
|
|
24
|
+
|
|
25
|
+
`-p, --clientSideComponentProperties [clientSideComponentProperties]`
|
|
26
|
+
: The Client Side Component properties of the ListView Command Set.
|
|
27
|
+
|
|
28
|
+
`-w, --webTemplate [webTemplate]`
|
|
29
|
+
: Optionally add a web template (e.g. STS#3, SITEPAGEPUBLISHING#0, etc) as a filter for what kind of sites the ListView Command Set is registered on.
|
|
30
|
+
|
|
31
|
+
`--location [location]`
|
|
32
|
+
: The location of the ListView Command Set. Allowed values `ContextMenu`, `CommandBar` or `Both`. Defaults to `CommandBar`.
|
|
33
|
+
|
|
34
|
+
--8<-- "docs/cmd/_global.md"
|
|
35
|
+
|
|
36
|
+
## Remarks
|
|
37
|
+
|
|
38
|
+
!!! warning "Escaping JSON in PowerShell"
|
|
39
|
+
When using the `--clientSideComponentProperties` option it's possible to enter a JSON string. In PowerShell 5 to 7.2 [specific escaping rules](./../../../user-guide/using-cli.md#escaping-double-quotes-in-powershell) apply due to an issue. Remember that you can also use [file tokens](./../../../user-guide/using-cli.md#passing-complex-content-into-cli-options) instead.
|
|
40
|
+
|
|
41
|
+
## Examples
|
|
42
|
+
|
|
43
|
+
Updates the title of a ListView Command Set that's deployed tenant wide.
|
|
44
|
+
|
|
45
|
+
```sh
|
|
46
|
+
m365 spo tenant commandset set --id 4 --newTitle "Some customizer"
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
Updates the properties of a ListView Command Set.
|
|
50
|
+
|
|
51
|
+
```sh
|
|
52
|
+
m365 spo tenant commandset set --id 3 --clientSideComponentProperties '{ "someProperty": "Some value" }'
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
## Response
|
|
56
|
+
|
|
57
|
+
The command won't return a response on success.
|
|
@@ -17,7 +17,7 @@ m365 spo tenant settings set [options]
|
|
|
17
17
|
: Specifies the upper bound on the compatibility level for new sites
|
|
18
18
|
|
|
19
19
|
`--ExternalServicesEnabled [ExternalServicesEnabled]`
|
|
20
|
-
: Enables external services for a tenant. External services are defined as services that are not in the Microsoft 365 data centers. Allowed values `true
|
|
20
|
+
: Enables external services for a tenant. External services are defined as services that are not in the Microsoft 365 data centers. Allowed values `true`, `false`
|
|
21
21
|
|
|
22
22
|
`--NoAccessRedirectUrl [NoAccessRedirectUrl]`
|
|
23
23
|
: Specifies the URL of the redirected site for those site collections which have the locked state "NoAccess"
|
|
@@ -26,55 +26,55 @@ m365 spo tenant settings set [options]
|
|
|
26
26
|
: Determines what level of sharing is available for the site. The valid values are: ExternalUserAndGuestSharing (default) - External user sharing (share by email) and guest link sharing are both enabled. Disabled - External user sharing (share by email) and guest link sharing are both disabled. ExternalUserSharingOnly - External user sharing (share by email) is enabled, but guest link sharing is disabled. Allowed values `Disabled,ExternalUserSharingOnly,ExternalUserAndGuestSharing,ExistingExternalUserSharingOnly`
|
|
27
27
|
|
|
28
28
|
`--DisplayStartASiteOption [DisplayStartASiteOption]`
|
|
29
|
-
: Determines whether tenant users see the Start a Site menu option. Allowed values `true
|
|
29
|
+
: Determines whether tenant users see the Start a Site menu option. Allowed values `true`, `false`
|
|
30
30
|
|
|
31
31
|
`--StartASiteFormUrl [StartASiteFormUrl]`
|
|
32
32
|
: Specifies URL of the form to load in the Start a Site dialog. The valid values are: "" (default) - Blank by default, this will also remove or clear any value that has been set. Full URL - Example:"https://contoso.sharepoint.com/path/to/form"
|
|
33
33
|
|
|
34
34
|
`--ShowEveryoneClaim [ShowEveryoneClaim]`
|
|
35
|
-
: Enables the administrator to hide the Everyone claim in the People Picker. When users share an item with Everyone, it is accessible to all authenticated users in the tenant's Azure Active Directory, including any active external users who have previously accepted invitations. Note, that some SharePoint system resources such as templates and pages are required to be shared with Everyone and this type of sharing does not expose any user data or metadata. Allowed values `true
|
|
35
|
+
: Enables the administrator to hide the Everyone claim in the People Picker. When users share an item with Everyone, it is accessible to all authenticated users in the tenant's Azure Active Directory, including any active external users who have previously accepted invitations. Note, that some SharePoint system resources such as templates and pages are required to be shared with Everyone and this type of sharing does not expose any user data or metadata. Allowed values `true`, `false`
|
|
36
36
|
|
|
37
37
|
`--ShowAllUsersClaim [ShowAllUsersClaim]`
|
|
38
|
-
: Enables the administrator to hide the All Users claim groups in People Picker. When users share an item with "All Users (x)", it is accessible to all organization members in the tenant's Azure Active Directory who have authenticated via this method. When users share an item with "All Users (x)" it is accessible to all organization members in the tenant that used NTLM to authenticate with SharePoint. Allowed values `true
|
|
38
|
+
: Enables the administrator to hide the All Users claim groups in People Picker. When users share an item with "All Users (x)", it is accessible to all organization members in the tenant's Azure Active Directory who have authenticated via this method. When users share an item with "All Users (x)" it is accessible to all organization members in the tenant that used NTLM to authenticate with SharePoint. Allowed values `true`, `false`
|
|
39
39
|
|
|
40
40
|
`--ShowEveryoneExceptExternalUsersClaim [ShowEveryoneExceptExternalUsersClaim]`
|
|
41
|
-
: Enables the administrator to hide the "Everyone except external users" claim in the People Picker. When users share an item with "Everyone except external users", it is accessible to all organization members in the tenant's Azure Active Directory, but not to any users who have previously accepted invitations. Allowed values `true
|
|
41
|
+
: Enables the administrator to hide the "Everyone except external users" claim in the People Picker. When users share an item with "Everyone except external users", it is accessible to all organization members in the tenant's Azure Active Directory, but not to any users who have previously accepted invitations. Allowed values `true`, `false`
|
|
42
42
|
|
|
43
43
|
`--SearchResolveExactEmailOrUPN [SearchResolveExactEmailOrUPN]`
|
|
44
|
-
: Removes the search capability from People Picker. Note, recently resolved names will still appear in the list until the browser cache is cleared or expired. SharePoint Administrators will still be able to use starts with or partial name matching when enabled. Allowed values `true
|
|
44
|
+
: Removes the search capability from People Picker. Note, recently resolved names will still appear in the list until the browser cache is cleared or expired. SharePoint Administrators will still be able to use starts with or partial name matching when enabled. Allowed values `true`, `false`
|
|
45
45
|
|
|
46
46
|
`--OfficeClientADALDisabled [OfficeClientADALDisabled]`
|
|
47
|
-
: When set to true this will disable the ability to use Modern Authentication that leverages ADAL across the tenant. Allowed values `true
|
|
47
|
+
: When set to true this will disable the ability to use Modern Authentication that leverages ADAL across the tenant. Allowed values `true`, `false`
|
|
48
48
|
|
|
49
49
|
`--LegacyAuthProtocolsEnabled [LegacyAuthProtocolsEnabled]`
|
|
50
|
-
: By default, this value is set to true. Setting this parameter prevents Office clients using non-modern authentication protocols from accessing SharePoint Online resources. A value of true - Enables Office clients using non-modern authentication protocols (such as Forms-Based Authentication (FBA) or Identity Client Runtime Library (IDCRL)) to access SharePoint resources. Allowed values `true
|
|
50
|
+
: By default, this value is set to true. Setting this parameter prevents Office clients using non-modern authentication protocols from accessing SharePoint Online resources. A value of true - Enables Office clients using non-modern authentication protocols (such as Forms-Based Authentication (FBA) or Identity Client Runtime Library (IDCRL)) to access SharePoint resources. Allowed values `true`, `false`
|
|
51
51
|
|
|
52
52
|
`--RequireAcceptingAccountMatchInvitedAccount [RequireAcceptingAccountMatchInvitedAccount]`
|
|
53
|
-
: Ensures that an external user can only accept an external sharing invitation with an account matching the invited email address. Administrators who desire increased control over external collaborators should consider enabling this feature. Allowed values `true
|
|
53
|
+
: Ensures that an external user can only accept an external sharing invitation with an account matching the invited email address. Administrators who desire increased control over external collaborators should consider enabling this feature. Allowed values `true`, `false`
|
|
54
54
|
|
|
55
55
|
`--ProvisionSharedWithEveryoneFolder [ProvisionSharedWithEveryoneFolder]`
|
|
56
|
-
: Creates a Shared with Everyone folder in every user's new OneDrive for Business document library. The valid values are: True (default) - The Shared with Everyone folder is created. False - No folder is created when the site and OneDrive for Business document library are created. Allowed values `true
|
|
56
|
+
: Creates a Shared with Everyone folder in every user's new OneDrive for Business document library. The valid values are: True (default) - The Shared with Everyone folder is created. False - No folder is created when the site and OneDrive for Business document library are created. Allowed values `true`, `false`
|
|
57
57
|
|
|
58
58
|
`--SignInAccelerationDomain [SignInAccelerationDomain]`
|
|
59
59
|
: Specifies the home realm discovery value to be sent to Azure Active Directory (AAD) during the user sign-in process. When the organization uses a third-party identity provider, this prevents the user from seeing the Azure Active Directory Home Realm Discovery web page and ensures the user only sees their company's Identity Provider's portal. This value can also be used with Azure Active Directory Premium to customize the Azure Active Directory login page. Acceleration will not occur on-site collections that are shared externally. This value should be configured with the login domain that is used by your company (that is, example@contoso.com). If your company has multiple third-party identity providers, configuring the sign-in acceleration value will break sign-in for your organization. The valid values are: "" (default) - Blank by default, this will also remove or clear any value that has been set. Login Domain - For example: "contoso.com". No value assigned by default
|
|
60
60
|
|
|
61
61
|
`--EnableGuestSignInAcceleration [EnableGuestSignInAcceleration]`
|
|
62
|
-
: Accelerates guest-enabled site collections as well as member-only site collections when the SignInAccelerationDomain parameter is set. Allowed values `true
|
|
62
|
+
: Accelerates guest-enabled site collections as well as member-only site collections when the SignInAccelerationDomain parameter is set. Allowed values `true`, `false`
|
|
63
63
|
|
|
64
64
|
`--UsePersistentCookiesForExplorerView [UsePersistentCookiesForExplorerView]`
|
|
65
|
-
: Lets SharePoint issue a special cookie that will allow this feature to work even when "Keep Me Signed In" is not selected. "Open with Explorer" requires persisted cookies to operate correctly. When the user does not select "Keep Me Signed in" at the time of sign-in, "Open with Explorer" will fail. This special cookie expires after 30 minutes and cannot be cleared by closing the browser or signing out of SharePoint Online.To clear this cookie, the user must log out of their Windows session. The valid values are: False(default) - No special cookie is generated and the normal Microsoft 365 sign-in length/timing applies. True - Generates a special cookie that will allow "Open with Explorer" to function if the "Keep Me Signed In" box is not checked at sign-in. Allowed values `true
|
|
65
|
+
: Lets SharePoint issue a special cookie that will allow this feature to work even when "Keep Me Signed In" is not selected. "Open with Explorer" requires persisted cookies to operate correctly. When the user does not select "Keep Me Signed in" at the time of sign-in, "Open with Explorer" will fail. This special cookie expires after 30 minutes and cannot be cleared by closing the browser or signing out of SharePoint Online.To clear this cookie, the user must log out of their Windows session. The valid values are: False(default) - No special cookie is generated and the normal Microsoft 365 sign-in length/timing applies. True - Generates a special cookie that will allow "Open with Explorer" to function if the "Keep Me Signed In" box is not checked at sign-in. Allowed values `true`, `false`
|
|
66
66
|
|
|
67
67
|
`--BccExternalSharingInvitations [BccExternalSharingInvitations]`
|
|
68
|
-
: When the feature is enabled, all external sharing invitations that are sent will blindly copy the e-mail messages listed in the BccExternalSharingsInvitationList. Allowed values `true
|
|
68
|
+
: When the feature is enabled, all external sharing invitations that are sent will blindly copy the e-mail messages listed in the BccExternalSharingsInvitationList. Allowed values `true`, `false`
|
|
69
69
|
|
|
70
70
|
`--BccExternalSharingInvitationsList [BccExternalSharingInvitationsList]`
|
|
71
71
|
: Specifies a list of e-mail addresses to be BCC'd when the BCC for External Sharing feature is enabled. Multiple addresses can be specified by creating a comma-separated list with no spaces
|
|
72
72
|
|
|
73
73
|
`--UserVoiceForFeedbackEnabled [UserVoiceForFeedbackEnabled]`
|
|
74
|
-
: Enables or disables the User Voice Feedback button. Allowed values `true
|
|
74
|
+
: Enables or disables the User Voice Feedback button. Allowed values `true`, `false`
|
|
75
75
|
|
|
76
76
|
`--PublicCdnEnabled [PublicCdnEnabled]`
|
|
77
|
-
: Enables or disables the publish CDN. Allowed values `true
|
|
77
|
+
: Enables or disables the publish CDN. Allowed values `true`, `false`
|
|
78
78
|
|
|
79
79
|
`--PublicCdnAllowedFileTypes [PublicCdnAllowedFileTypes]`
|
|
80
80
|
: Sets public CDN-allowed file types
|
|
@@ -95,10 +95,10 @@ m365 spo tenant settings set [options]
|
|
|
95
95
|
: Sets a default OneDrive for Business storage quota for the tenant. It will be used for new OneDrive for Business sites created. A typical use will be to reduce the amount of storage associated with OneDrive for Business to a level below what the License entitles the users. For example, it could be used to set the quota to 10 gigabytes (GB) by default
|
|
96
96
|
|
|
97
97
|
`--OneDriveForGuestsEnabled [OneDriveForGuestsEnabled]`
|
|
98
|
-
: Lets OneDrive for Business creation for administrator-managed guest users. Administrator-managed Guest users use credentials in the resource tenant to access the resources. Allowed values `true
|
|
98
|
+
: Lets OneDrive for Business creation for administrator-managed guest users. Administrator-managed Guest users use credentials in the resource tenant to access the resources. Allowed values `true`, `false`
|
|
99
99
|
|
|
100
100
|
`--IPAddressEnforcement [IPAddressEnforcement]`
|
|
101
|
-
: Allows access from network locations that are defined by an administrator. The values are true and false. The default value is false which means the setting is disabled. Before the iPAddressEnforcement parameter is set, make sure you add a valid IPv4 or IPv6 address to the iPAddressAllowList parameter. Allowed values `true
|
|
101
|
+
: Allows access from network locations that are defined by an administrator. The values are true and false. The default value is false which means the setting is disabled. Before the iPAddressEnforcement parameter is set, make sure you add a valid IPv4 or IPv6 address to the iPAddressAllowList parameter. Allowed values `true`, `false`
|
|
102
102
|
|
|
103
103
|
`--IPAddressAllowList [IPAddressAllowList]`
|
|
104
104
|
: Configures multiple IP addresses or IP address ranges (IPv4 or IPv6). Use commas to separate multiple IP addresses or IP address ranges. Verify there are no overlapping IP addresses and ensure IP ranges use Classless Inter-Domain Routing (CIDR) notation. For example, `172.16.0.0, 192.168.1.0/27`. No value is assigned by default
|
|
@@ -107,7 +107,7 @@ m365 spo tenant settings set [options]
|
|
|
107
107
|
: Sets IP Address WAC token lifetime'
|
|
108
108
|
|
|
109
109
|
`--UseFindPeopleInPeoplePicker [UseFindPeopleInPeoplePicker]`
|
|
110
|
-
: Sets use to find people in PeoplePicker to true or false. Note: When set to true, users aren't able to share with security groups or SharePoint groups. Allowed values `true
|
|
110
|
+
: Sets use to find people in PeoplePicker to true or false. Note: When set to true, users aren't able to share with security groups or SharePoint groups. Allowed values `true`, `false`
|
|
111
111
|
|
|
112
112
|
`--DefaultSharingLinkType [DefaultSharingLinkType]`
|
|
113
113
|
: Let's administrators choose what type of link appears is selected in the “Get a link” sharing dialog box in OneDrive for Business and SharePoint Online. Allowed values `None,Direct,Internal,AnonymousAccess`
|
|
@@ -119,10 +119,10 @@ m365 spo tenant settings set [options]
|
|
|
119
119
|
: Lets administrators set policy on access requests and requests to share in OneDrive for Business. Allowed values `Unspecified,On,Off`
|
|
120
120
|
|
|
121
121
|
`--PreventExternalUsersFromResharing [PreventExternalUsersFromResharing]`
|
|
122
|
-
: Prevents external users from resharing. Allowed values `true
|
|
122
|
+
: Prevents external users from resharing. Allowed values `true`, `false`
|
|
123
123
|
|
|
124
124
|
`--ShowPeoplePickerSuggestionsForGuestUsers [ShowPeoplePickerSuggestionsForGuestUsers]`
|
|
125
|
-
: Shows people picker suggestions for guest users. Allowed values `true
|
|
125
|
+
: Shows people picker suggestions for guest users. Allowed values `true`, `false`
|
|
126
126
|
|
|
127
127
|
`--FileAnonymousLinkType [FileAnonymousLinkType]`
|
|
128
128
|
: Sets the file anonymous link type to `None`, `View` or `Edit`
|
|
@@ -131,31 +131,31 @@ m365 spo tenant settings set [options]
|
|
|
131
131
|
: Sets the folder anonymous link type to `None`, `View` or `Edit`
|
|
132
132
|
|
|
133
133
|
`--NotifyOwnersWhenItemsReshared [NotifyOwnersWhenItemsReshared]`
|
|
134
|
-
: When this parameter is set to true and another user re-shares a document from a user's OneDrive for Business, the OneDrive for Business owner is notified by email. For additional information about how to configure notifications for external sharing, see Configure notifications for external sharing for OneDrive for Business. Allowed values `true
|
|
134
|
+
: When this parameter is set to true and another user re-shares a document from a user's OneDrive for Business, the OneDrive for Business owner is notified by email. For additional information about how to configure notifications for external sharing, see Configure notifications for external sharing for OneDrive for Business. Allowed values `true`, `false`
|
|
135
135
|
|
|
136
136
|
`--NotifyOwnersWhenInvitationsAccepted [NotifyOwnersWhenInvitationsAccepted]`
|
|
137
|
-
: When this parameter is set to true and when an external user accepts an invitation to a resource in a user's OneDrive for Business, the OneDrive for Business owner is notified by email. For additional information about how to configure notifications for external sharing, see Configure notifications for external sharing for OneDrive for Business. Allowed values `true
|
|
137
|
+
: When this parameter is set to true and when an external user accepts an invitation to a resource in a user's OneDrive for Business, the OneDrive for Business owner is notified by email. For additional information about how to configure notifications for external sharing, see Configure notifications for external sharing for OneDrive for Business. Allowed values `true`, `false`
|
|
138
138
|
|
|
139
139
|
`--NotificationsInOneDriveForBusinessEnabled [NotificationsInOneDriveForBusinessEnabled]`
|
|
140
|
-
: Enables or disables notifications in OneDrive for business. Allowed values `true
|
|
140
|
+
: Enables or disables notifications in OneDrive for business. Allowed values `true`, `false`
|
|
141
141
|
|
|
142
142
|
`--NotificationsInSharePointEnabled [NotificationsInSharePointEnabled]`
|
|
143
|
-
: Enables or disables notifications in SharePoint. Allowed values `true
|
|
143
|
+
: Enables or disables notifications in SharePoint. Allowed values `true`, `false`
|
|
144
144
|
|
|
145
145
|
`--OwnerAnonymousNotification [OwnerAnonymousNotification]`
|
|
146
|
-
: Enables or disables owner-anonymous notification. Allowed values `true
|
|
146
|
+
: Enables or disables owner-anonymous notification. Allowed values `true`, `false`
|
|
147
147
|
|
|
148
148
|
`--CommentsOnSitePagesDisabled [CommentsOnSitePagesDisabled]`
|
|
149
|
-
: Enables or disables comments on site pages. Allowed values `true
|
|
149
|
+
: Enables or disables comments on site pages. Allowed values `true`, `false`
|
|
150
150
|
|
|
151
151
|
`--SocialBarOnSitePagesDisabled [SocialBarOnSitePagesDisabled]`
|
|
152
|
-
: Enables or disables social bar on site pages. Allowed values `true
|
|
152
|
+
: Enables or disables social bar on site pages. Allowed values `true`, `false`
|
|
153
153
|
|
|
154
154
|
`--OrphanedPersonalSitesRetentionPeriod [OrphanedPersonalSitesRetentionPeriod]`
|
|
155
155
|
: Specifies the number of days after a user's Active Directory account is deleted that their OneDrive for Business content will be deleted. The value range is in days, between 30 and 3650. The default value is 30
|
|
156
156
|
|
|
157
157
|
`--DisallowInfectedFileDownload [DisallowInfectedFileDownload]`
|
|
158
|
-
: Prevents the Download button from being displayed on the Virus Found warning page. Allowed values `true
|
|
158
|
+
: Prevents the Download button from being displayed on the Virus Found warning page. Allowed values `true`, `false`
|
|
159
159
|
|
|
160
160
|
`--DefaultLinkPermission [DefaultLinkPermission]`
|
|
161
161
|
: Choose the default permission that is selected when users share. This applies to anonymous access, internal and direct links. Allowed values `None,View,Edit`
|
|
@@ -164,85 +164,85 @@ m365 spo tenant settings set [options]
|
|
|
164
164
|
: Configures conditional access policy. Allowed values `AllowFullAccess,AllowLimitedAccess,BlockAccess`
|
|
165
165
|
|
|
166
166
|
`--AllowDownloadingNonWebViewableFiles [AllowDownloadingNonWebViewableFiles]`
|
|
167
|
-
: Allows downloading non-web viewable files. The Allowed values `true
|
|
167
|
+
: Allows downloading non-web viewable files. The Allowed values `true`, `false`
|
|
168
168
|
|
|
169
169
|
`--AllowEditing [AllowEditing]`
|
|
170
|
-
: Allows editing. Allowed values `true
|
|
170
|
+
: Allows editing. Allowed values `true`, `false`
|
|
171
171
|
|
|
172
172
|
`--ApplyAppEnforcedRestrictionsToAdHocRecipients [ApplyAppEnforcedRestrictionsToAdHocRecipients]`
|
|
173
|
-
: Applies app-enforced restrictions to AdHoc recipients. Allowed values `true
|
|
173
|
+
: Applies app-enforced restrictions to AdHoc recipients. Allowed values `true`, `false`
|
|
174
174
|
|
|
175
175
|
`--FilePickerExternalImageSearchEnabled [FilePickerExternalImageSearchEnabled]`
|
|
176
|
-
: Enables file picker external image search. Allowed values `true
|
|
176
|
+
: Enables file picker external image search. Allowed values `true`, `false`
|
|
177
177
|
|
|
178
178
|
`--EmailAttestationRequired [EmailAttestationRequired]`
|
|
179
|
-
: Sets email attestation to required. Allowed values `true
|
|
179
|
+
: Sets email attestation to required. Allowed values `true`, `false`
|
|
180
180
|
|
|
181
181
|
`--EmailAttestationReAuthDays [EmailAttestationReAuthDays]`
|
|
182
182
|
: Sets email attestation re-auth days
|
|
183
183
|
|
|
184
184
|
`--HideDefaultThemes [HideDefaultThemes]`
|
|
185
|
-
: Defines if the default themes are visible or hidden. Allowed values `true
|
|
185
|
+
: Defines if the default themes are visible or hidden. Allowed values `true`, `false`
|
|
186
186
|
|
|
187
187
|
`--BlockAccessOnUnmanagedDevices [BlockAccessOnUnmanagedDevices]`
|
|
188
|
-
: Blocks access on unmanaged devices. Allowed values `true
|
|
188
|
+
: Blocks access on unmanaged devices. Allowed values `true`, `false`
|
|
189
189
|
|
|
190
190
|
`--AllowLimitedAccessOnUnmanagedDevices [AllowLimitedAccessOnUnmanagedDevices]`
|
|
191
|
-
: Allows limited access on unmanaged device blocks. Allowed values `true
|
|
191
|
+
: Allows limited access on unmanaged device blocks. Allowed values `true`, `false`
|
|
192
192
|
|
|
193
193
|
`--BlockDownloadOfAllFilesForGuests [BlockDownloadOfAllFilesForGuests]`
|
|
194
|
-
: Blocks download of all files for guests. Allowed values `true
|
|
194
|
+
: Blocks download of all files for guests. Allowed values `true`, `false`
|
|
195
195
|
|
|
196
196
|
`--BlockDownloadOfAllFilesOnUnmanagedDevices [BlockDownloadOfAllFilesOnUnmanagedDevices]`
|
|
197
|
-
: Blocks download of all files on unmanaged devices. Allowed values `true
|
|
197
|
+
: Blocks download of all files on unmanaged devices. Allowed values `true`, `false`
|
|
198
198
|
|
|
199
199
|
`--BlockDownloadOfViewableFilesForGuests [BlockDownloadOfViewableFilesForGuests]`
|
|
200
|
-
: Blocks download of viewable files for guests. Allowed values `true
|
|
200
|
+
: Blocks download of viewable files for guests. Allowed values `true`, `false`
|
|
201
201
|
|
|
202
202
|
`--BlockDownloadOfViewableFilesOnUnmanagedDevices [BlockDownloadOfViewableFilesOnUnmanagedDevices]`
|
|
203
|
-
: Blocks download of viewable files on unmanaged devices. Allowed values `true
|
|
203
|
+
: Blocks download of viewable files on unmanaged devices. Allowed values `true`, `false`
|
|
204
204
|
|
|
205
205
|
`--BlockMacSync [BlockMacSync]`
|
|
206
|
-
: Blocks Mac sync. Allowed values `true
|
|
206
|
+
: Blocks Mac sync. Allowed values `true`, `false`
|
|
207
207
|
|
|
208
208
|
`--DisableReportProblemDialog [DisableReportProblemDialog]`
|
|
209
|
-
: Disables report problem dialog. Allowed values `true
|
|
209
|
+
: Disables report problem dialog. Allowed values `true`, `false`
|
|
210
210
|
|
|
211
211
|
`--DisplayNamesOfFileViewers [DisplayNamesOfFileViewers]`
|
|
212
|
-
: Displays names of file viewers. Allowed values `true
|
|
212
|
+
: Displays names of file viewers. Allowed values `true`, `false`
|
|
213
213
|
|
|
214
214
|
`--EnableMinimumVersionRequirement [EnableMinimumVersionRequirement]`
|
|
215
|
-
: Enables minimum version requirement. Allowed values `true
|
|
215
|
+
: Enables minimum version requirement. Allowed values `true`, `false`
|
|
216
216
|
|
|
217
217
|
`--HideSyncButtonOnODB [HideSyncButtonOnODB]`
|
|
218
|
-
: Hides the sync button on One Drive for Business. Allowed values `true
|
|
218
|
+
: Hides the sync button on One Drive for Business. Allowed values `true`, `false`
|
|
219
219
|
|
|
220
220
|
`--IsUnmanagedSyncClientForTenantRestricted [IsUnmanagedSyncClientForTenantRestricted]`
|
|
221
|
-
: Is unmanaged sync client for tenant restricted. Allowed values `true
|
|
221
|
+
: Is unmanaged sync client for tenant restricted. Allowed values `true`, `false`
|
|
222
222
|
|
|
223
223
|
`--LimitedAccessFileType [LimitedAccessFileType]`
|
|
224
224
|
: Allows users to preview only Office files in the browser. This option increases security but may be a barrier to user productivity. Allowed values `OfficeOnlineFilesOnly,WebPreviewableFiles,OtherFiles`
|
|
225
225
|
|
|
226
226
|
`--OptOutOfGrooveBlock [OptOutOfGrooveBlock]`
|
|
227
|
-
: Opts out of the groove block. Allowed values `true
|
|
227
|
+
: Opts out of the groove block. Allowed values `true`, `false`
|
|
228
228
|
|
|
229
229
|
`--OptOutOfGrooveSoftBlock [OptOutOfGrooveSoftBlock]`
|
|
230
|
-
: Opts out of Groove soft block. Allowed values `true
|
|
230
|
+
: Opts out of Groove soft block. Allowed values `true`, `false`
|
|
231
231
|
|
|
232
232
|
`--OrgNewsSiteUrl [OrgNewsSiteUrl]`
|
|
233
233
|
: Organization news site url'
|
|
234
234
|
|
|
235
235
|
`--PermissiveBrowserFileHandlingOverride [PermissiveBrowserFileHandlingOverride]`
|
|
236
|
-
: Permissive browser file handling override. Allowed values `true
|
|
236
|
+
: Permissive browser file handling override. Allowed values `true`, `false`
|
|
237
237
|
|
|
238
238
|
`--ShowNGSCDialogForSyncOnODB [ShowNGSCDialogForSyncOnODB]`
|
|
239
|
-
: Show NGSC dialog for sync on OneDrive for Business. Allowed values `true
|
|
239
|
+
: Show NGSC dialog for sync on OneDrive for Business. Allowed values `true`, `false`
|
|
240
240
|
|
|
241
241
|
`--SpecialCharactersStateInFileFolderNames [SpecialCharactersStateInFileFolderNames]`
|
|
242
242
|
: Sets the special characters state in file and folder names in SharePoint and OneDrive for Business. Allowed values `NoPreference,Allowed,Disallowed`
|
|
243
243
|
|
|
244
244
|
`--SyncPrivacyProfileProperties [SyncPrivacyProfileProperties]`
|
|
245
|
-
: Syncs privacy profile properties. Allowed values `true
|
|
245
|
+
: Syncs privacy profile properties. Allowed values `true`, `false`
|
|
246
246
|
|
|
247
247
|
`--ExcludedFileExtensionsForSyncClient [ExcludedFileExtensionsForSyncClient]`
|
|
248
248
|
: Excluded file extensions for sync client. Array of strings split by comma
|
|
@@ -254,13 +254,16 @@ m365 spo tenant settings set [options]
|
|
|
254
254
|
: Sets disabled web part Ids. Array of GUIDs split by comma. Example: `c9b1909e-901a-0000-2cdb-e91c3f46320a,c9b1909e-901a-0000-2cdb-e91c3f463201`
|
|
255
255
|
|
|
256
256
|
`--DisableCustomAppAuthentication [DisableCustomAppAuthentication]`
|
|
257
|
-
: Configure if ACS-based app-only auth should be disabled or not. Allowed values `true
|
|
257
|
+
: Configure if ACS-based app-only auth should be disabled or not. Allowed values `true`, `false`
|
|
258
|
+
|
|
259
|
+
`--CommentsOnListItemsDisabled [CommentsOnListItemsDisabled]`
|
|
260
|
+
: Enables or disables comments on lists. Allowed values `true`, `false`
|
|
258
261
|
|
|
259
262
|
`--EnableAzureADB2BIntegration [EnableAzureADB2BIntegration]`
|
|
260
|
-
: Enables the preview for OneDrive and SharePoint integration with Azure AD B2B. Allowed values `true
|
|
263
|
+
: Enables the preview for OneDrive and SharePoint integration with Azure AD B2B. Allowed values `true`, `false`. Azure AD one-time passcode needs to be enabled for this integration to work. For more information see [http://aka.ms/spo-b2b-integration](https://aka.ms/spo-b2b-integration).
|
|
261
264
|
|
|
262
265
|
`--SyncAadB2BManagementPolicy [SyncAadB2BManagementPolicy]`
|
|
263
|
-
: Syncs Azure B2B Management Policies. Allowed values `true
|
|
266
|
+
: Syncs Azure B2B Management Policies. Allowed values `true`, `false`. For more information, see [SharePoint and OneDrive integration with Azure AD B2B](https://aka.ms/spo-b2b-integration).
|
|
264
267
|
|
|
265
268
|
--8<-- "docs/cmd/_global.md"
|
|
266
269
|
|