spo group user remove¶
Removes the specified user from a SharePoint group
Usage¶
m365 spo group user remove [options]
Options¶
-u, --webUrl <webUrl>
- URL of the site where the SharePoint group is available
--groupId [groupId]
- Id of the SharePoint group from which user has to be removed from. Use either
groupName
orgroupId
, but not both --groupName [groupName]
- Name of the SharePoint group from which user has to be removed from. Use either
groupName
orgroupId
, but not both --userName <userName>
- User's UPN (user principal name, eg. megan.bowen@contoso.com).
-h, --help
- output usage information
--query [query]
- JMESPath query string. See http://jmespath.org/ for more information and examples
-o, --output [output]
- Output type.
json,text,csv
. Defaultjson
--verbose
- Runs command with verbose logging
--debug
- Runs command with debug logging
Examples¶
Remove a user from SharePoint group with id 5 available on the web https://contoso.sharepoint.com/sites/SiteA
m365 spo group user remove --webUrl https://contoso.sharepoint.com/sites/SiteA --groupId 5 --userName "Alex.Wilber@contoso.com"
Remove a user from SharePoint group with Name Site A Visitors available on the web https://contoso.sharepoint.com/sites/SiteA
m365 spo group user remove --webUrl https://contoso.sharepoint.com/sites/SiteA --groupName "Site A Visitors" --userName "Alex.Wilber@contoso.com"