Skip to main content

planner tenant settings set

Sets Microsoft Planner configuration of the tenant

Usage

m365 planner tenant settings set [options]

Options

--isPlannerAllowed [isPlannerAllowed]

Configure whether Planner should be enabled on the tenant.

--allowCalendarSharing [allowCalendarSharing]

Configure whether Outlook calendar sync is enabled.

--allowTenantMoveWithDataLoss [allowTenantMoveWithDataLoss]

Configure whether a tenant move into a new region is authorized.

--allowTenantMoveWithDataMigration [allowTenantMoveWithDataMigration]

Configure whether a tenant move with data migration is authorized.

--allowRosterCreation [allowRosterCreation]

Configure whether Planner roster creation is allowed.

--allowPlannerMobilePushNotifications [allowPlannerMobilePushNotifications]

Configure whether push notifications are enabled in the mobile app.

-h, --help [help]

Output usage information. Optionally, specify which section of command's help you want to see. Allowed values are options, examples, remarks, response, full. Default is options.

--query [query]

JMESPath query string. See http://jmespath.org/ for more information and examples.

-o, --output [output]

Output type. json, text, csv, md, none. Default json.

--verbose

Runs command with verbose logging.

--debug

Runs command with debug logging.

Remarks

info

To use this command you must be a global administrator.

Examples

Disable Microsoft Planner in the tenant.

m365 planner tenant settings set --isPlannerAllowed false

Disable Outlook calendar sync and mobile push notifications.

m365 planner tenant settings set --allowCalendarSharing false --allowPlannerMobilePushNotifications false

Enable Microsoft Planner but disallow roster plans to be created.

m365 planner tenant settings set --isPlannerAllowed true --allowRosterCreation false

Response

{
"id": "1",
"isPlannerAllowed": true,
"allowCalendarSharing": true,
"allowTenantMoveWithDataLoss": false,
"allowTenantMoveWithDataMigration": false,
"allowRosterCreation": true,
"allowPlannerMobilePushNotifications": true
}
CTRL + M