Edit

Share via


Remove-EntraBetaFeatureRolloutPolicy

Allows an admin to remove the policy for cloud authentication roll-out in Microsoft Entra ID.

Syntax

Default (Default)

Remove-EntraBetaFeatureRolloutPolicy

    -Id <String>
    [<CommonParameters>]

Description

An admin uses Remove-EntraBetaFeatureRolloutPolicy cmdlet to remove the cloud authentication roll-out policy and have all users where policy applied to be free of the policy.

Users in groups that were assigned to the policy falls back to the global authentication method (most common case will be federation). Specify Id parameter to remove the cloud authentication roll-out policy.

Examples

Example 1: Removes the policy for cloud authentication roll-out in Microsoft Entra ID

Connect-Entra -Scopes 'Directory.ReadWrite.All'
$policy = Get-EntraBetaFeatureRolloutPolicy -Filter "DisplayName eq 'Feature-Rollout-Policy'"
Remove-EntraBetaFeatureRolloutPolicy -Id $policy.Id

This example removes the policy for cloud authentication roll-out in Microsoft Entra ID.

  • -Id - specifies the unique identifier of the cloud authentication roll-out policy. You can use Get-EntraBetaFeatureRolloutPolicy to retrieve policy details.

Parameters

-Id

The unique identifier of the cloud authentication roll-out policy 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: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.