Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Rosters are a type of container for Microsoft Planner plans, primarily used for plans associated with task lists in Loop. Access to Roster-contained plans is controlled by the members on the Roster.
In General Data Protection Regulation (GDPR) scenarios where the tenant admin is working on a data subject delete request, they might require access to Roster contained plans. The following PowerShell cmdlets support that access. The tenant admin can use these commands to add and remove a member. This process can be done to give themselves or another person access to a specific roster and the plan data within.
Prerequisites for making Planner changes in Windows PowerShell
Before you begin, make sure you complete the steps outlined in Prerequisites for making Planner changes in Windows PowerShell to make Planner changes in Windows PowerShell.
Manage Roster membership
Note
If you use Microsoft Planner in a different M365 endpoint, then additionally include -HostName <hostname Of Microsoft Planner website>
on the following commands. The default is tasks.office.com
.
Run the following command to add a user to a Roster’s membership. The value returned is the added user’s Microsoft Entra user ID.
Add-PlannerRosterMember -RosterId <Roster Id> -UserAadIdOrPrincipalName "<User’s AAD ID or UPN>"
Run the following command to remove a user from the Roster’s membership. No value is returned, but when this command completes the user is removed.
Remove-PlannerRosterMember -RosterId <Roster Id> -UserAadIdOrPrincipalName "<User’s AAD ID or UPN>"