Edit

Share via


Get-EntraBetaFeatureRolloutPolicy

Gets the policy for cloud authentication roll-out in Microsoft Entra ID.

Syntax

GetQuery (Default)

Get-EntraBetaFeatureRolloutPolicy

    [-Filter <String>]
    [-Property <String[]>]
    [<CommonParameters>]

GetVague

Get-EntraBetaFeatureRolloutPolicy

    [-SearchString <String>]
    [-Property <String[]>]
    [<CommonParameters>]

GetById

Get-EntraBetaFeatureRolloutPolicy

    -Id <String>
    [-Property <String[]>]
    [<CommonParameters>]

Description

The Get-EntraBetaFeatureRolloutPolicy cmdlet allows an admin to get the policy for cloud authentication rollout (users moving from federation to cloud auth) in Microsoft Entra ID. This policy consists of one or two FeatureRolloutPolicy objects. These objects hold the groups assigned for cloud authentication (Pass-through authentication or Password Hash Sync) and groups assigned for Seamless single sign-on.

Examples

Example 1: Retrieves a list of all cloud authentication roll-out in Microsoft Entra ID

Connect-Entra -Scopes 'Directory.ReadWrite.All'
Get-EntraBetaFeatureRolloutPolicy
Id                                   Description            DisplayName                Feature            IsAppliedToOrganization IsEnabled
--                                   -----------            -----------                -------            ----------------------- ---------
00aa00aa-bb11-cc22-dd33-44ee44ee44ee Feature-Rollout-test   Feature-Rollout-Policytest passwordHashSync   False                   True
11bb11bb-cc22-dd33-ee44-55ff55ff55ff Feature-Rollout-Policy change                     emailAsAlternateId False                   False

This command retrieves a list of all cloud authentication roll-out policies in Microsoft Entra ID.

Example 2: Retrieves cloud authentication roll-out in Microsoft Entra ID with given ID

Connect-Entra -Scopes 'Directory.ReadWrite.All'
$policy = Get-EntraBetaFeatureRolloutPolicy -Filter "DisplayName eq 'FeatureRolloutPolicy'"
Get-EntraBetaFeatureRolloutPolicy -Id $policy.Id
Id                                   Description          DisplayName                Feature          IsAppliedToOrganization IsEnabled
--                                   -----------          -----------                -------          ----------------------- ---------
11bb11bb-cc22-dd33-ee44-55ff55ff55ff Feature-Rollout-test Feature-Rollout-Policytest passwordHashSync False                   True

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

  • -Id - Specify The unique identifier of the cloud authentication roll-out policy in Microsoft Entra ID.

Example 3: Retrieves cloud authentication roll-out in Microsoft Entra ID with given Search String

Connect-Entra -Scopes 'Directory.ReadWrite.All'
Get-EntraBetaFeatureRolloutPolicy -SearchString 'Feature-Rollout-Policytest'
Id                                   Description          DisplayName                Feature          IsAppliedToOrganization IsEnabled
--                                   -----------          -----------                -------          ----------------------- ---------
11bb11bb-cc22-dd33-ee44-55ff55ff55ff Feature-Rollout-test Feature-Rollout-Policytest passwordHashSync False

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

Example 4: Retrieves cloud authentication roll-out in Microsoft Entra ID with given Filter parameter

Connect-Entra -Scopes 'Directory.ReadWrite.All'
Get-EntraBetaFeatureRolloutPolicy -Filter "DisplayName eq 'Feature-Rollout-Policytest'"
Id                                   Description          DisplayName                Feature          IsAppliedToOrganization IsEnabled
--                                   -----------          -----------                -------          ----------------------- ---------
11bb11bb-cc22-dd33-ee44-55ff55ff55ff Feature-Rollout-test Feature-Rollout-Policytest passwordHashSync False

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

Parameters

-Filter

Specifies an OData v4.0 filter statement. Controls which objects are returned.

Parameter properties

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

Parameter sets

GetQuery
Position:Named
Mandatory:False
Value from pipeline:True
Value from pipeline by property name:True
Value from remaining arguments:False

-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

GetById
Position:Named
Mandatory:True
Value from pipeline:True
Value from pipeline by property name:True
Value from remaining arguments:False

-Property

Specifies properties to be returned.

Parameter properties

Type:

System.String[]

Default value:None
Supports wildcards:False
DontShow:False
Aliases:Select

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-SearchString

Specifies a search string.

Parameter properties

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

Parameter sets

GetVague
Position:Named
Mandatory:False
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.

Outputs

Microsoft.Online.Administration.MsFeatureRolloutPolicy