Remove-EntraFeatureRolloutPolicy
Allows an admin to remove the policy for cloud authentication roll-out in Microsoft Entra ID.
Syntax
Remove-EntraFeatureRolloutPolicy
-Id <String>
[<CommonParameters>]
Description
An admin uses Remove-EntraFeatureRolloutPolicy
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-EntraFeatureRolloutPolicy -Filter "DisplayName eq 'Feature-Rollout-Policy'"
Remove-EntraFeatureRolloutPolicy -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 useGet-EntraFeatureRolloutPolicy
to retrieve policy details.
Parameters
-Id
The unique identifier of the cloud authentication roll-out policy in Microsoft Entra ID.
Type: | System.String |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |