Skip to content

Commit 61f0ca6

Browse files
Merge pull request #302593 from MicrosoftDocs/main
Auto Publish – main to live - 2025-07-11 17:00 UTC
2 parents 41d772e + ff12e4f commit 61f0ca6

File tree

38 files changed

+219
-190
lines changed

38 files changed

+219
-190
lines changed

articles/active-directory-b2c/partner-trusona.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ In this scenario, Trusona acts as an Identity Provider (IdP) for Azure AD B2C to
7575

7676
## Step 1: Onboard with Trusona Authentication Cloud
7777

78-
1. Sign in to the [Trusona Portal](https://portal.trusona.io).
78+
1. Sign in to the [Trusona Portal](https://portal.trusona.com/).
7979
2. From the left navigation panel, select **Settings**
8080
3. In the Settings menu, select the slider to **Enable OIDC**.
8181
4. Select the appropriate **Inputs** and provide the **Redirect URL** `https://{your-tenant-name}.b2clogin.com/{your-tenant-name}.onmicrosoft.com/oauth2/authresp`.

articles/app-service/invoke-openapi-web-app-from-azure-ai-agent-service.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: 'Invoke an App Service web app from Azure AI Foundry Agent Service'
33
description: Learn how to integrate App Service with AI Foundry Agent Service and get started with agentic AI
44
author: seligj95
55
ms.author: jordanselig
6-
ms.date: 06/13/2025
6+
ms.date: 07/11/2025
77
ms.update-cycle: 180-days
88
ms.topic: article
99
ms.custom:
@@ -95,7 +95,7 @@ For detailed guidance with screenshots and additional information, see [Add Open
9595
After setting up the AI Agent and adding the OpenAPI Specified Tool, you need to configure your App Service with the appropriate environment variables so the app knows which agent to connect to. The app already has a managed identity assigned that gives it access to the AI Agent Service. This managed identity is required for the app to reach the agent and is created with the azd template.
9696
9797
1. From the Agents dashboard where you added the OpenAPI tool, note the **agent ID**. It's in the format `asst_<unique-identifier>`.
98-
1. Select **Overview** in the menu note the **project's connection string**. It's in the format `<region>.api.azureml.ms;<subscription-id>;<resource-group-name>;<project-name>`.
98+
1. Select **Overview** in the menu and note the **project's connection string**. It's in the format `<region>.api.azureml.ms;<subscription-id>;<resource-group-name>;<project-name>`.
9999
1. Navigate to your App Service in the Azure portal.
100100
1. Select **Environment variables** in the left menu.
101101
1. In the **App settings** tab, select **+ Add** and add the following setting:

articles/app-service/troubleshoot-intermittent-outbound-connection-errors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ Although PHP doesn't support connection pooling, you can try using persistent da
100100
#### Python
101101

102102
* [MySQL](https://dev.mysql.com/doc/connector-python/en/connector-python-connection-pooling.html)
103-
* [MariaDB](https://mariadb.com/docs/ent/connect/programming-languages/python/connection-pools/)
103+
* [MariaDB](https://mariadb.com/docs/connectors/mariadb-connector-python/api/pool/)
104104
* [PostgreSQL](https://www.psycopg.org/docs/pool.html)
105105
* [Pyodbc](https://github.com/mkleehammer/pyodbc/wiki/The-pyodbc-Module#pooling)
106106
* [SQLAlchemy](https://docs.sqlalchemy.org/en/20/core/pooling.html)

articles/azure-functions/functions-infrastructure-as-code.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ This example shows how to create a container in the storage account:
177177

178178
### [Bicep](#tab/bicep)
179179

180-
:::code language="bicep" source="~/function-flex-consumption/IaC/bicep/core/storage/storage-account.bicep" range="46-57" :::
180+
<! :::code language="bicep" source="~/function-flex-consumption/IaC/bicep/core/storage/storage-account.bicep" range="46-57" ::: >
181181

182182
For the snippet in context, see [this deployment example](https://github.com/Azure-Samples/azure-functions-flex-consumption-samples/blob/main/IaC/bicep/core/storage/storage-account.bicep#L46).
183183

@@ -320,7 +320,7 @@ This example section creates Flex Consumption plan:
320320

321321
### [Bicep](#tab/bicep)
322322

323-
:::code language="bicep" source="~/function-flex-consumption/IaC/bicep/core/host/function.bicep" range="21-33" :::
323+
<! :::code language="bicep" source="~/function-flex-consumption/IaC/bicep/core/host/function.bicep" range="21-33" ::: >
324324

325325
For more context, see the complete [function.bicep](https://github.com/Azure-Samples/azure-functions-flex-consumption-samples/blob/main/IaC/bicep/core/host/function.bicep#L21) file in the Flex Consumption plan sample repository.
326326

@@ -795,7 +795,7 @@ Flex Consumption replaces many of the standard application settings and site con
795795

796796
### [Bicep](#tab/bicep)
797797

798-
:::code language="bicep" source="~/function-flex-consumption/IaC/bicep/core/host/function.bicep" range="35-77" :::
798+
<! :::code language="bicep" source="~/function-flex-consumption/IaC/bicep/core/host/function.bicep" range="35-77" ::: >
799799

800800
For more context, see the complete [function.bicep](https://github.com/Azure-Samples/azure-functions-flex-consumption-samples/blob/main/IaC/bicep/core/host/function.bicep#L35) file in the Flex Consumption plan sample repository.
801801

@@ -1224,7 +1224,7 @@ This example uses a system assigned managed identity to access the specified blo
12241224

12251225
### [Bicep](#tab/bicep)
12261226

1227-
:::code language="bicep" source="~/function-flex-consumption/IaC/bicep/core/host/function.bicep" range="58-66" :::
1227+
<! :::code language="bicep" source="~/function-flex-consumption/IaC/bicep/core/host/function.bicep" range="58-66" ::: >
12281228

12291229
### [ARM template](#tab/json)
12301230

@@ -1236,7 +1236,7 @@ When using managed identities, you must also enable the function app to access t
12361236

12371237
### [Bicep](#tab/bicep)
12381238

1239-
:::code language="bicep" source="~/function-flex-consumption/IaC/bicep/core/host/function.bicep" range="81-90" :::
1239+
<! :::code language="bicep" source="~/function-flex-consumption/IaC/bicep/core/host/function.bicep" range="81-90" ::: >
12401240

12411241
For a complete reference example, see [this Bicep file](https://github.com/Azure-Samples/azure-functions-flex-consumption-samples/blob/main/IaC/bicep/core/host/function.bicep).
12421242

articles/azure-resource-manager/management/azure-services-resource-providers.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -236,14 +236,6 @@ The resource providers for management services are:
236236
| Microsoft.SoftwarePlan | License |
237237
| Microsoft.Solutions | [Azure Managed Applications](../managed-applications/index.yml) |
238238

239-
## Media resource providers
240-
241-
The resource providers for media services are:
242-
243-
| Resource provider namespace | Azure service |
244-
| --------------------------- | ------------- |
245-
| Microsoft.Media | [Media Services](/azure/media-services/) |
246-
247239
## Migration resource providers
248240

249241
The resource providers for migration services are:

articles/backup/backup-azure-troubleshoot-slow-backup-performance-issue.md

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,29 @@
22
title: Troubleshoot slow backup of files and folders
33
description: Provides troubleshooting guidance to help you diagnose the cause of Azure Backup performance issues
44
ms.topic: troubleshooting
5-
ms.date: 12/28/2022
5+
ms.date: 07/11/2025
66
ms.service: azure-backup
77
ms.custom: engagement-fy23
8-
author: jyothisuri
9-
ms.author: jsuri
8+
author: AbhishekMallick-MS
9+
ms.author: v-mallicka
1010
# Customer intent: As an IT administrator troubleshooting slow backup performance, I want to identify potential bottlenecks and resolve them effectively, so that I can ensure efficient and timely data backups using the Azure Backup service.
1111
---
1212
# Troubleshoot slow backup of files and folders in Azure Backup
1313

14-
This article provides troubleshooting guidance to help you diagnose the cause of slow backup performance for files and folders when you're using Azure Backup. When you use the Azure Backup agent to back up files, the backup process might take longer than expected. This delay might be caused by one or more of the following:
14+
This article provides troubleshooting guidance to help you diagnose the cause of slow backup performance for files and folders when you use Azure Backup. If the Azure Backup agent takes longer than expected to back up files, investigate the following possible causes:
1515

16-
* [There are performance bottlenecks on the computer that's being backed up.](#cause1)
17-
* [Another process or antivirus software is interfering with the Azure Backup process.](#cause2)
18-
* [The Backup agent is running on an Azure virtual machine (VM).](#cause3)
19-
* [You're backing up a large number (millions) of files.](#cause4)
16+
- The computer you back up experiences performance bottlenecks.
17+
- Another process or antivirus software interferes with the Azure Backup process.
18+
- You run the Backup agent on an Azure virtual machine (VM).
19+
- You attempt to back up a very large number of files (millions).
2020

21-
Before you start troubleshooting issues, we recommend that you download and install the [latest Azure Backup agent](https://aka.ms/azurebackup_agent). We make frequent
22-
updates to the Backup agent to fix various issues, add features, and improve performance.
21+
## Prerequisites
22+
23+
Before you start troubleshooting backup performance issues, review the following prerequisites:
24+
25+
- Download and install the [latest Azure Backup agent](https://aka.ms/azurebackup_agent). Frequent updates to the agent fix known issues, introduce new features, and improve performance.
26+
- Review the [Azure Backup service FAQ](backup-azure-backup-faq.yml), which helps you avoid common configuration issues that might affect backup efficiency.
2327

24-
We also strongly recommend that you review the [Azure Backup service FAQ](backup-azure-backup-faq.yml) to make sure you're not experiencing any of the common configuration issues.
2528

2629
[!INCLUDE [support-disclaimer](~/reusable-content/ce-skilling/azure/includes/support-disclaimer.md)]
2730

articles/backup/upgrade-mars-agent.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
title: Upgrade the Microsoft Azure Recovery Services (MARS) agent for Azure Backup
33
description: Learn how to upgrade the Microsoft Azure Recovery Services (MARS) agent.
44
ms.topic: how-to
5-
ms.date: 08/27/2023
5+
ms.date: 07/11/2025
66
ms.service: azure-backup
77
ms.custom: engagement-fy24
8-
author: jyothisuri
9-
ms.author: jsuri
8+
author: AbhishekMallick-MS
9+
ms.author: v-mallicka
1010
# Customer intent: As an IT administrator managing on-premises backups, I want to upgrade the MARS agent for Azure Backup, so that I can ensure optimal performance and security for data protection in my environment.
1111
---
1212

@@ -36,7 +36,7 @@ To install the Azure Backup agent and Azure Backup server, follow these steps:
3636

3737
## Update the MARS agent installation on the server
3838

39-
Once you've identified the servers that need an Azure Backup agent update, perform the following steps for each identified server (using Azure Backup server or the MARS Agent). [Download the latest version of the Azure Backup agent](https://aka.ms/azurebackup_agent) before following the steps below.
39+
After you identify the servers that require an Azure Backup agent update, ensure you [download the latest version of the agent (Azure Backup Server or MARS Agent)](https://aka.ms/azurebackup_agent). When ready, update the agent on each server by following these steps:
4040

4141
1. Select a row that has the Azure Backup agent lower than 2.0.9083.0 or blank. This will open the server detail screen.
4242

@@ -80,7 +80,7 @@ Once you've identified the servers that need an Azure Backup agent update, perfo
8080

8181
## Upgrade Azure Backup agent for System Center Data Protection Manager
8282

83-
If you've installed the Azure Backup agents on the System Center Data Protection Manager (SC DPM) servers, then you need to follow the steps below to identify whether your DPM servers need an Azure Backup agent update:
83+
If you've installed the Azure Backup agents on the System Center Data Protection Manager (SC DPM) servers, identify if your DPM servers need an Azure Backup agent update by following these steps:
8484

8585
1. Sign in to your SC DPM server as an Administrator.
8686
2. Open the DPM Console.

articles/cloud-services-extended-support/support-help.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Explore the range of [Azure support options and choose the plan](https://azure.m
4343

4444
Learn about important product updates, roadmap, and announcements in [Azure Updates](https://azure.microsoft.com/updates/?category=compute).
4545

46-
News and information about Azure Cloud Services (extended support) is shared at the [Azure blog](https://azure.microsoft.com/blog/topics/virtual-machines/).
46+
News and information about Azure Cloud Services (extended support) is shared at the [Azure blog](https://azure.microsoft.com/blog/product/virtual-machines/).
4747

4848

4949
## Next steps

articles/communication-services/quickstarts/advanced-messaging/whatsapp/includes/interactive/messages-quickstart-interactive-messages-java.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ InteractiveMessage interactiveMessage = new InteractiveMessage(
102102
interactiveMessage.setFooter(new TextMessageContent("Logistic Ltd"));
103103
interactiveMessage.setHeader(new TextMessageContent("Shipping Options"));
104104

105-
InteractiveNotificationContent interactiveMessageContent new InteractiveNotificationContent("<CHANNEL_ID>", recipients, interactiveMessage);
105+
InteractiveNotificationContent interactiveMessageContent = new InteractiveNotificationContent("<CHANNEL_ID>", recipients, interactiveMessage);
106106

107107
// Send an interactive message
108108
SendMessageResult textMessageResult = notificationClient.send(interactiveMessageContent);
@@ -134,7 +134,7 @@ buttonActions.add(new ButtonContent("yes", "Yes"));
134134
ButtonSetContent buttonSet = new ButtonSetContent(buttonActions);
135135
InteractiveMessage interactiveMessage = new InteractiveMessage(new TextMessageContent("Do you want to proceed?"), new WhatsAppButtonActionBindings(buttonSet));
136136

137-
InteractiveNotificationContent interactiveMessageContent new InteractiveNotificationContent("<CHANNEL_ID>", recipients, interactiveMessage);
137+
InteractiveNotificationContent interactiveMessageContent = new InteractiveNotificationContent("<CHANNEL_ID>", recipients, interactiveMessage);
138138

139139
// Send an interactive message
140140
SendMessageResult textMessageResult = notificationClient.send(interactiveMessageContent);
@@ -159,12 +159,12 @@ The Messages SDK enables Contoso to send interactive WhatsApp messages, when ini
159159
In this example, the business sends a click to a link message to the user.
160160

161161
```java
162-
LinkContent urlAction = new LinkContent("Click here to find out", "https://wallpapercave.com/wp/wp2163723.jpg");
162+
LinkContent urlAction = new LinkContent("Find out more", "https://wallpapercave.com/wp/wp2163723.jpg");
163163
InteractiveMessage interactiveMessage = new InteractiveMessage(
164164
new TextMessageContent("The best Guardian of Galaxy"), new WhatsAppUrlActionBindings(urlAction));
165165
interactiveMessage.setFooter(new TextMessageContent("Intergalactic New Ltd"));
166166

167-
InteractiveNotificationContent interactiveMessageContent new InteractiveNotificationContent("<CHANNEL_ID>", recipients, interactiveMessage);
167+
InteractiveNotificationContent interactiveMessageContent = new InteractiveNotificationContent("<CHANNEL_ID>", recipients, interactiveMessage);
168168

169169
// Send an interactive message
170170
SendMessageResult textMessageResult = notificationClient.send(interactiveMessageContent);

articles/dev-box/concept-dev-box-network-requirements.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ This section covers some common connection and network issues.
190190

191191
If the dev box user encounters sign in problems and sees an error message indicating that the sign in attempt failed, ensure you enabled the PKU2U protocol on both the local PC and the session host.
192192

193-
For more information about troubleshooting sign in errors, see [Troubleshoot connections to Microsoft Entra joined VMs - Windows Desktop client](/azure/virtual-desktop/troubleshoot-azure-ad-connections#the-logon-attempt-failed).
193+
For more information about troubleshooting sign in errors, see [Troubleshoot connections to Microsoft Entra joined VMs - Windows Desktop client](/troubleshoot/azure/virtual-desktop/troubleshoot-azure-ad-connections).
194194

195195
- **Group policy issues in hybrid environments**
196196

0 commit comments

Comments
 (0)