Remove-EntraLifecyclePolicyGroup
Removes a group from a lifecycle policy.
Syntax
Default (Default)
Remove-EntraLifecyclePolicyGroup
-GroupId <String>
-GroupLifecyclePolicyId <String>
[<CommonParameters>]
Description
The Remove-EntraLifecyclePolicyGroup
cmdlet removes a group from a lifecycle policy in Microsoft Entra ID.
Examples
Example 1: Remove lifecycle policy group
Connect-Entra -Scopes 'Directory.ReadWrite.All'
$group = Get-EntraGroup -Filter "DisplayName eq 'Office365 group'"
$policy = Get-EntraLifecyclePolicyGroup -Id $group.Id
Remove-EntraLifecyclePolicyGroup -GroupLifecyclePolicyId $policy.Id -GroupId $group.Id
Value
-----
True
This example demonstrates how to remove a group from a lifecycle policy in Microsoft Entra ID with specified Id and groupId.
-GroupLifecyclePolicyId
parameter specifies the lifecycle policy object ID.-GroupId
parameter specifies the ID of Office365 group.
Parameters
-GroupId
Specifies the ID of a group in Microsoft Entra ID.
Parameter properties
Type: | System.String |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Parameter sets
(All)
Position: | Named |
Mandatory: | True |
Value from pipeline: | False |
Value from pipeline by property name: | False |
Value from remaining arguments: | False |
-GroupLifecyclePolicyId
Specifies the ID of the lifecycle policy object in Microsoft Entra ID.
Parameter properties
Type: | System.String |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Aliases: | Id |
Parameter sets
(All)
Position: | Named |
Mandatory: | True |
Value from pipeline: | True |
Value from pipeline by property name: | True |
Value from remaining arguments: | False |
CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.