Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 682 Bytes

RemovePnPGroup.md

File metadata and controls

23 lines (20 loc) · 682 Bytes

#Remove-PnPGroup Removes a group from a web. ##Syntax

Remove-PnPGroup [-Force [<SwitchParameter>]]
                [-Web <WebPipeBind>]
                [-Identity <GroupPipeBind>]

##Parameters

Parameter Type Required Description
Force SwitchParameter False Specifying the Force parameter will skip the confirmation question.
Identity GroupPipeBind False A group object, an ID or a name of a group to remove
Web WebPipeBind False The web to apply the command to. Omit this parameter to use the current web.
##Examples

###Example 1

PS:> Remove-PnPGroup -Identity "My Users"

Removes the group "My Users"