Skip to content

Commit b40575d

Browse files
committed
Merge branch 'main' of https://github.com/MicrosoftDocs/azure-docs-pr into updateEncryptionPortal
2 parents a212afc + 86f2696 commit b40575d

File tree

37 files changed

+208
-684
lines changed

37 files changed

+208
-684
lines changed

.openpublishing.redirection.active-directory.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
{
22
"redirections": [
3+
{
4+
"source_path_from_root": "/articles/active-directory/develop/active-directory-claims-mapping.md",
5+
"redirect_url": "/azure/active-directory/develop/active-directory-saml-claims-customization",
6+
"redirect_document_id": false
7+
},
8+
{
9+
"source_path_from_root": "/articles/active-directory/develop/configure-token-lifetimes.md",
10+
"redirect_url": "/azure/active-directory/develop/active-directory-saml-claims-customization",
11+
"redirect_document_id": false
12+
},
313
{
414
"source_path_from_root": "/articles/active-directory/authentication/how-to-mfa-microsoft-managed.md",
515
"redirect_url": "/azure/active-directory/authentication/concept-authentication-default-enablement",

articles/active-directory/develop/TOC.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -124,14 +124,10 @@
124124
href: active-directory-optional-claims.md
125125
- name: Configure role claim
126126
href: active-directory-enterprise-app-role-management.md
127-
- name: Configure token lifetimes
128-
href: configure-token-lifetimes.md
129127
- name: Customize JWT claims
130128
href: active-directory-jwt-claims-customization.md
131129
- name: Customize SAML claims
132130
href: active-directory-saml-claims-customization.md
133-
- name: Customize claims using PowerShell
134-
href: active-directory-claims-mapping.md
135131
- name: Directory extension attributes
136132
href: active-directory-schema-extensions.md
137133
- name: SAML app multi-instancing

articles/active-directory/develop/active-directory-claims-mapping.md

Lines changed: 0 additions & 435 deletions
This file was deleted.

articles/active-directory/develop/configure-token-lifetimes.md

Lines changed: 0 additions & 101 deletions
This file was deleted.

articles/active-directory/hybrid/how-to-connect-modify-group-writeback.md

Lines changed: 24 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,28 @@ To configure directory settings to disable automatic writeback of newly created
3636
- PowerShell: Use the [Microsoft Graph PowerShell SDK](/powershell/microsoftgraph/installation?view=graph-powershell-1.0&preserve-view=true). For example:
3737

3838
```PowerShell
39-
# Import Module
40-
Import-Module Microsoft.Graph.Identity.DirectoryManagement
41-
42-
#Connect to MgGraph with necessary scope and select the Beta API Version
43-
Connect-MgGraph -Scopes Directory.ReadWrite.All
44-
Select-MgProfile -Name beta
45-
39+
# Import Module
40+
Import-Module Microsoft.Graph.Identity.DirectoryManagement
41+
42+
#Connect to MgGraph with necessary scope and select the Beta API Version
43+
Connect-MgGraph -Scopes Directory.ReadWrite.All
44+
Select-MgProfile -Name beta
45+
46+
# Verify if "Group.Unified" directory settings exist
47+
$DirectorySetting = Get-MgDirectorySetting | Where-Object {$_.DisplayName -eq "Group.Unified"}
48+
49+
# If "Group.Unified" directory settings exist, update the value for new unified group writeback default
50+
if ($DirectorySetting) {
51+
$DirectorySetting.Values | ForEach-Object {
52+
if ($_.Name -eq "NewUnifiedGroupWritebackDefault") {
53+
$_.Value = "false"
54+
}
55+
}
56+
Update-MgDirectorySetting -DirectorySettingId $DirectorySetting.Id -BodyParameter $DirectorySetting
57+
}
58+
else
59+
{
60+
# In case the directory setting doesn't exist, create a new "Group.Unified" directory setting
4661
# Import "Group.Unified" template values to a hashtable
4762
$Template = Get-MgDirectorySettingTemplate | Where-Object {$_.DisplayName -eq "Group.Unified"}
4863
$TemplateValues = @{}
@@ -52,6 +67,7 @@ To configure directory settings to disable automatic writeback of newly created
5267
5368
# Update the value for new unified group writeback default
5469
$TemplateValues["NewUnifiedGroupWritebackDefault"] = "false"
70+
5571
# Create a directory setting using the Template values hashtable including the updated value
5672
$params = @{}
5773
$params.Add("TemplateId", $Template.Id)
@@ -60,6 +76,7 @@ To configure directory settings to disable automatic writeback of newly created
6076
$params.Values += @(@{Name = $_; Value = $TemplateValues[$_]})
6177
}
6278
New-MgDirectorySetting -BodyParameter $params
79+
}
6380
```
6481

6582
> [!NOTE]

articles/active-directory/hybrid/plan-hybrid-identity-design-considerations-data-protection-strategy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.service: active-directory
1212
ms.topic: conceptual
1313
ms.tgt_pltfrm: na
1414
ms.workload: identity
15-
ms.date: 04/29/2019
15+
ms.date: 01/19/2023
1616
ms.subservice: hybrid
1717
ms.author: billmath
1818
ms.custom: seohack1

articles/active-directory/hybrid/plan-hybrid-identity-design-considerations-directory-sync-requirements.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.service: active-directory
1212
ms.topic: conceptual
1313
ms.tgt_pltfrm: na
1414
ms.workload: identity
15-
ms.date: 07/18/2017
15+
ms.date: 01/19/2023
1616
ms.subservice: hybrid
1717
ms.author: billmath
1818
ms.custom: seohack1

articles/active-directory/hybrid/plan-hybrid-identity-design-considerations-hybrid-id-management-tasks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.service: active-directory
1111
ms.topic: conceptual
1212
ms.tgt_pltfrm: na
1313
ms.workload: identity
14-
ms.date: 04/29/2019
14+
ms.date: 01/19/2023
1515
ms.subservice: hybrid
1616
ms.author: billmath
1717
ms.custom: seohack1

articles/active-directory/hybrid/plan-hybrid-identity-design-considerations-lifecycle-adoption-strategy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.service: active-directory
1111
ms.topic: conceptual
1212
ms.tgt_pltfrm: na
1313
ms.workload: identity
14-
ms.date: 05/30/2018
14+
ms.date: 01/19/2023
1515
ms.subservice: hybrid
1616
ms.author: billmath
1717
ms.custom: seohack1

articles/active-directory/hybrid/plan-hybrid-identity-design-considerations-multifactor-auth-requirements.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.service: active-directory
1212
ms.topic: conceptual
1313
ms.tgt_pltfrm: na
1414
ms.workload: identity
15-
ms.date: 07/18/2017
15+
ms.date: 01/19/2023
1616
ms.subservice: hybrid
1717
ms.author: billmath
1818
ms.custom: seohack1

0 commit comments

Comments
 (0)