Remove-WssUserGroupMembership
Removes a user from a user group.
Parameter Set: Default
Remove-WssUserGroupMembership -GroupName <String> -UserName <String> [ <CommonParameters>]
The Remove-WssUserGroupMembership cmdlet removes a user account from a user group.
Specifies the name of a user group. The cmdlet removes a user account from the group that you specify.
Aliases |
none |
Required? |
true |
Position? |
named |
Default Value |
none |
Accept Pipeline Input? |
false |
Accept Wildcard Characters? |
false |
Specifies the name of a user account. The cmdlet removes the account that you specify from a group.
Aliases |
none |
Required? |
true |
Position? |
named |
Default Value |
none |
Accept Pipeline Input? |
false |
Accept Wildcard Characters? |
false |
This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, and -OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).
The input type is the type of the objects that you can pipe to the cmdlet.
The output type is the type of the objects that the cmdlet emits.
This command removes the account named EvanNarvaez from the user group named HRGroup.
PS C:\> Remove-WssUserGroupMembership -GroupName "HRGroup" -UserName "EvanNarvaez"
PS C:\>