Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Get-EntraBetaDirSyncConfiguration

## Description

The `Get-EntraBetaDirSyncConfiguration` cmdlet gets the directory synchronization settings.
The `Get-EntraBetaDirSyncConfiguration` cmdlet gets the directory synchronization settings. See [configuration settings](https://learn.microsoft.com/graph/api/resources/onpremisesaccidentaldeletionprevention#properties) details.

For delegated scenarios, the user needs to be assigned the Global Administrator role.

Expand All @@ -58,7 +58,8 @@ This example gets directory synchronization settings.

```powershell
Connect-Entra -Scopes 'OnPremDirectorySynchronization.ReadWrite.All'
Get-EntraBetaDirSyncConfiguration -TenantId 'aaaabbbb-0000-cccc-1111-dddd2222eeee'
$tenant = Get-EntraBetaTenantDetail
Get-EntraBetaDirSyncConfiguration -TenantId $tenant.Id
```

```Output
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ Get-EntraBetaDirSyncFeature

## Description

The `Get-EntraBetaDirSyncFeature` cmdlet checks the status of directory synchronization features for a tenant.
The `Get-EntraBetaDirSyncFeature` cmdlet checks the status of directory sync features for a tenant. If no features are specified, it returns a list of all features and their enabled or disabled status.

For delegated scenarios, the user needs to be assigned the Global Administrator role.

Some of the features that can be used with this cmdlet include:

Expand All @@ -48,9 +50,7 @@ Some of the features that can be used with this cmdlet include:
- **UnifiedGroupWriteback**
- **UserWriteback**

The cmdlet can be run without specifying any features, in which case it returns a list of all features and their enabled or disabled status.

For delegated scenarios, the user needs to be assigned the Global Administrator role.
To view all supported features, see the [complete feature list](https://learn.microsoft.com/graph/api/resources/onpremisesdirectorysynchronizationfeature#properties).

## Examples

Expand Down Expand Up @@ -124,7 +124,7 @@ Accept wildcard characters: False

### -Feature

The directory synchronization feature to check the status of.
The directory sync feature to check. See the [complete feature list](https://learn.microsoft.com/graph/api/resources/onpremisesdirectorysynchronizationfeature#properties).

```yaml
Type: System.String
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Get-EntraDirSyncConfiguration

## Description

The `Get-EntraDirSyncConfiguration` cmdlet gets the directory synchronization settings.
The `Get-EntraDirSyncConfiguration` cmdlet gets the directory synchronization settings. See [configuration settings](https://learn.microsoft.com/graph/api/resources/onpremisesaccidentaldeletionprevention#properties) details.

For delegated scenarios, the user needs to be assigned the Global Administrator role.

Expand All @@ -58,7 +58,8 @@ This example gets directory synchronization settings.

```powershell
Connect-Entra -Scopes 'OnPremDirectorySynchronization.ReadWrite.All'
Get-EntraDirSyncConfiguration -TenantId 'aaaabbbb-0000-cccc-1111-dddd2222eeee'
$tenant = Get-EntraTenantDetail
Get-EntraDirSyncConfiguration -TenantId $tenant.Id
```

```Output
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ Get-EntraDirSyncFeature

## Description

The `Get-EntraDirSyncFeature` cmdlet checks the status of directory synchronization features for a tenant.
The `Get-EntraDirSyncFeature` cmdlet checks the status of directory sync features for a tenant. If no features are specified, it returns a list of all features and their enabled or disabled status.

For delegated scenarios, the user needs to be assigned the Global Administrator role.

Some of the features that can be used with this cmdlet include:

Expand All @@ -48,9 +50,7 @@ Some of the features that can be used with this cmdlet include:
- **UnifiedGroupWriteback**
- **UserWriteback**

The cmdlet can be run without specifying any features, in which case it returns a list of all features and their enabled or disabled status.

For delegated scenarios, the user needs to be assigned the Global Administrator role.
To view all supported features, see the [complete feature list](https://learn.microsoft.com/graph/api/resources/onpremisesdirectorysynchronizationfeature#properties).

## Examples

Expand Down Expand Up @@ -124,7 +124,7 @@ Accept wildcard characters: False

### -Feature

The directory synchronization feature to check the status of.
The directory sync feature to check. See the [complete feature list](https://learn.microsoft.com/graph/api/resources/onpremisesdirectorysynchronizationfeature#properties).

```yaml
Type: System.String
Expand Down