Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

Set-EntraBetaFeatureRolloutPolicy

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

Syntax

Default (Default)

Set-EntraBetaFeatureRolloutPolicy

 [-Feature <FeatureEnum>]
 [-IsEnabled <Boolean>]
 -Id <String>
 [-IsAppliedToOrganization <Boolean>]
 [-AppliesTo <System.Collections.Generic.List`1[Microsoft.Open.MSGraph.Model.MsDirectoryObject]>]
 [-Description <String>]
 [-DisplayName <String>]
 [<CommonParameters>]

Description

An admin uses the Set-EntraBetaFeatureRolloutPolicy cmdlet to modify the cloud authentication rollout policy.

This includes specifying whether the method for cloud authentication is Pass-through Authentication or Password Hash Synchronization, and whether Seamless Single Sign-On (SSO) is enabled.

Users in groups assigned to the policy will start authenticating using the new method and Seamless SSO, if it is specified.

Examples

Example 1: Updates 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'"
Set-EntraBetaFeatureRolloutPolicy -Id $policy.Id -DisplayName 'Feature-Rollout-Policytest' -IsEnabled $false

This command updates the policy for cloud authentication roll-out in Microsoft Entra ID.

  • -Id - specifies the ID of cloud authentication roll-out policy.
  • -DisplayName - specifies the display name of the cloud authentication roll-out policy.
  • -IsEnabled - specifies the status of cloud authentication roll-out policy.

Example 2: Updates the Description

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

This command updates the -Description of policy for cloud authentication roll-out in Microsoft Entra ID.

  • -Id Specify the ID of cloud authentication roll-out policy.
  • -Description Specifies the description of the cloud authentication roll-out policy.

Example 3: Updates the IsAppliedToOrganization

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

This command updates the -IsAppliedToOrganization parameter of policy for cloud authentication roll-out in Microsoft Entra ID to indicate that the feature should be applied to the entire organization.

  • -Id Specify the ID of cloud authentication roll-out policy.
  • -IsAppliedToOrganization Parameter determines whether a particular feature rollout policy should be applied to the entire organization or not.

Parameters

-AppliesTo

Specifies a list of Microsoft Entra ID objects that is assigned to the feature.

Parameter properties

Type:

System.Collections.Generic.List`1[Microsoft.Open.MSGraph.Model.MsDirectoryObject]

Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

-Description

Specifies the description of the cloud authentication roll-out policy.

Parameter properties

Type:System.String
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

-DisplayName

Specifies the display name of the cloud authentication roll-out policy.

Parameter properties

Type:System.String
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

-Feature

Specifies a feature assigned to the cloud authentication roll-out policy.

Possible values are:

  • passthroughAuthentication
  • seamlessSso
  • passwordHashSync
  • emailAsAlternateId
  • unknownFutureValue
  • certificateBasedAuthentication
  • multiFactorAuthentication

Parameter properties

Type:FeatureEnum
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

-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

-IsAppliedToOrganization

Specifies if the cloud authentication roll-out policy applied to the entire organization.

Parameter properties

Type:System.Boolean
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

-IsEnabled

Specifies the status of cloud authentication roll-out policy.

Parameter properties

Type:System.Boolean
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

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.

Notes

Related Links


Feedback

Was this page helpful?