Skip to content

Commit 7dd3547

Browse files
authored
Merge pull request #223923 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-docs (branch main)
2 parents 8525170 + 3c4e4ae commit 7dd3547

File tree

5 files changed

+36
-11
lines changed

5 files changed

+36
-11
lines changed

articles/active-directory/governance/workflows-faqs.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ In this article you will find questions to commonly asked questions about [Lifec
2323

2424
Yes, custom workflows can be configured for members or guests in your tenant. Workflows can run for all types of external guests, external members, internal guests and internal members.
2525

26+
### Why do I see "Lifecycle Management" instead of "Lifecycle Workflows"?
27+
For a small portion of our customers, Lifecycle Workflows may still be listed under the former name Lifecycle Management in the audit logs and enterprise applications.
28+
2629
### Do I need to map employeeHireDate in provisioning apps like WorkDay?
2730

2831
Yes, key user properties like employeeHireDate and employeeType are supported for user provisioning from HR apps like WorkDay. To use these properties in Lifecycle workflows, you will need to map them in the provisioning process to ensure the values are set. The following is an example of the mapping:

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

Lines changed: 24 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ This article walks you through the options for modifying the default behaviors o
2828

2929
If the original version of group writeback is already enabled and in use in your environment, all your Microsoft 365 groups have already been written back to Active Directory. Instead of disabling all Microsoft 365 groups, review any use of the previously written-back groups. Disable only those that are no longer needed in on-premises Active Directory.
3030

31-
### Disable automatic writeback of all Microsoft 365 groups
31+
### Disable automatic writeback of new Microsoft 365 groups
3232

3333
To configure directory settings to disable automatic writeback of newly created Microsoft 365 groups, use one of these methods:
3434

@@ -45,13 +45,32 @@ To configure directory settings to disable automatic writeback of newly created
4545

4646
- Microsoft Graph: Use the [directorySetting](/graph/api/resources/directorysetting?view=graph-rest-beta&preserve-view=true) resource type.
4747

48-
### Disable writeback for each existing Microsoft 365 group
48+
### Disable writeback for all existing Microsoft 365 group
49+
50+
To disable writeback of all Microsoft 365 groups that were created before these modifications, use one of the folowing methods:
4951

5052
- Portal: Use the [Microsoft Entra admin portal](../enterprise-users/groups-write-back-portal.md).
51-
- PowerShell: Use the [Microsoft Identity Tools PowerShell module](https://www.powershellgallery.com/packages/MSIdentityTools/2.0.16). For example:
53+
- PowerShell: Use the [Microsoft Graph PowerShell SDK](/powershell/microsoftgraph/installation?view=graph-powershell-1.0&preserve-view=true). For example:
54+
55+
```PowerShell
56+
#Import-module
57+
Import-module Microsoft.Graph
58+
59+
#Connect to MgGraph and select the Beta API Version
60+
Connect-MgGraph -Scopes Group.ReadWrite.All
61+
Select-MgProfile -Name beta
62+
63+
#List all Microsoft 365 Groups
64+
$Groups = Get-MgGroup -All | Where-Object {$_.GroupTypes -like "*unified*"}
65+
66+
#Disable Microsoft 365 Groups
67+
Foreach ($group in $Groups)
68+
{
69+
Update-MgGroup -GroupId $group.id -WritebackConfiguration @{isEnabled=$false}
70+
}
71+
> We recomend using Microsoft Graph PowerShell SDK with [Windows PowerShell 7](/powershell/scripting/whats-new/migrating-from-windows-powershell-51-to-powershell-7?view=powershell-7.3&preserve-view=true)
5272
53-
`Get-mggroup -filter "groupTypes/any(c:c eq 'Unified')" | Update-MsIdGroupWritebackConfiguration -WriteBackEnabled $false`
54-
- Microsoft Graph: Use a [group object](/graph/api/group-update?tabs=http&view=graph-rest-beta&preserve-view=true).
73+
- Microsoft Graph Explorer: Use a [group object](/graph/api/group-update?tabs=http&view=graph-rest-beta&preserve-view=true).
5574
5675
## Delete groups when they're disabled for writeback or soft deleted
5776

articles/aks/certificate-rotation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ For any AKS clusters created or upgraded after March 2022 Azure Kubernetes Servi
7575

7676
To verify if TLS Bootstrapping is enabled on your cluster browse to the following paths:
7777

78-
* On a Linux node: */var/lib/kubelet/bootstrap-kubeconfig*
78+
* On a Linux node: */var/lib/kubelet/bootstrap-kubeconfig* or */host/var/lib/kubelet/bootstrap-kubeconfig*
7979
* On a Windows node: *C:\k\bootstrap-config*
8080

8181
To access agent nodes, see [Connect to Azure Kubernetes Service cluster nodes for maintenance or troubleshooting][aks-node-access] for more information.

articles/api-management/api-management-howto-ip-addresses.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ In the Developer, Basic, Standard, and Premium tiers of API Management, the publ
128128
* The service subscription is [suspended](https://github.com/Azure/azure-resource-manager-rpc/blob/master/v1.0/subscription-lifecycle-api-reference.md#subscription-states) or [warned](https://github.com/Azure/azure-resource-manager-rpc/blob/master/v1.0/subscription-lifecycle-api-reference.md#subscription-states) (for example, for nonpayment) and then reinstated.
129129
* (Developer and Premium tiers) Azure Virtual Network is added to or removed from the service.
130130
* (Developer and Premium tiers) API Management service is switched between external and internal VNet deployment mode.
131+
* (Developer and Premium tiers) API Management service is moved to a different subnet.
131132
* (Premium tier) [Availability zones](../reliability/migrate-api-mgt.md) are enabled, added, or removed.
132133
* (Premium tier) In [multi-regional deployments](api-management-howto-deploy-multi-region.md), the regional IP address changes if a region is vacated and then reinstated.
133134

articles/event-grid/storage-upload-process-images.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -246,11 +246,13 @@ az webapp config appsettings set --name $webapp --resource-group myResourceGroup
246246
```
247247

248248
```powershell
249-
az webapp config appsettings set --name $webapp --resource-group myResourceGroup `
250-
--settings AzureStorageConfig__AccountName=$blobStorageAccount `
251-
AzureStorageConfig__ImageContainer=images `
252-
AzureStorageConfig__ThumbnailContainer=thumbnails `
253-
AzureStorageConfig__AccountKey=$blobStorageAccountKey
249+
New-AzStaticWebAppSetting -ResourceGroupName myResourceGroup -Name $webapp `
250+
-AppSetting @{ `
251+
AzureStorageConfig__AccountName = $blobStorageAccount `
252+
AzureStorageConfig__ImageContainer = images `
253+
AzureStorageConfig__ThumbnailContainer = thumbnails `
254+
AzureStorageConfig__AccountKey = $blobStorageAccountKey `
255+
}
254256
```
255257

256258
# [JavaScript v12 SDK](#tab/javascript)

0 commit comments

Comments
 (0)