Remove-AmsGroupMember

SYNOPSIS

Removes one or more members of an AMS group

SYNTAX

Remove-AmsGroupMember -Id <String> [-Devices <Object[]>] [-Force] [<CommonParameters>]

DESCRIPTION

This cmdlet removes one or more members from a group

EXAMPLES

Example 1

PS C:\> Remove-AmsGroupMember -Id '0c1ecad4-3581-42c5-8501-22f13559e418' -Devices '0b5cffd6-d22f-49d7-b5e2-4631997a7416'

Removes a device by its ID from a group by its ID

Example 2

PS C:\> Remove-AmsGroupMember -Id '0c1ecad4-3581-42c5-8501-22f13559e418'

Removes all members of the group

Example 3

Gets a group by name, and removes a specific member by its known ID

Example 4

Gets a group by name, and removes a specific member by retrieving the object by its name

PARAMETERS

-Devices

A list of IDs or device objects to remove from the group

-Force

When removing all members from the group, this parameter indicates that the members should be removed without any confirmation prompt

-Id

The ID of the group

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

System.String

OUTPUTS

System.Void

NOTES

Use of this cmdlet requires an Enterprise Edition license.

Last updated

Was this helpful?